Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Pickup more upstream Eagle test suite changes. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
52f30da1493575dbdddea5f708714c82 |
User & Date: | mistachkin 2015-10-01 19:33:19.372 |
Context
2015-10-02
| ||
18:05 | Correct use of 'find.exe' by the batch tools. check-in: 03db10a564 user: mistachkin tags: trunk | |
2015-10-01
| ||
19:33 | Pickup more upstream Eagle test suite changes. check-in: 52f30da149 user: mistachkin tags: trunk | |
04:07 | Pickup further upstream enhancements to the Eagle test suite prologue file. check-in: 607127f1bb user: mistachkin tags: trunk | |
Changes
Changes to Externals/Eagle/lib/Test1.0/all.eagle.
︙ | ︙ | |||
46 47 48 49 50 51 52 | set test_all_path \ [file normalize [file dirname [info script]]] } source [file join $test_all_path prologue.eagle] if {![info exists test_path]} then { | > > > > > > | > > > > | > > > > | > > > > > > | 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 | set test_all_path \ [file normalize [file dirname [info script]]] } source [file join $test_all_path prologue.eagle] if {![info exists test_path]} then { # # NOTE: Search for the "Library/Tests" -OR- "Tests" sub-directories # within the sub-directory one level up and then two levels up # from the sub-directory containing the "all.eagle" file from # the test suite package. # set test_path [file normalize [file join [file dirname \ $test_all_path] Library Tests]] if {![file exists $test_path] || ![file isdirectory $test_path]} then { set test_path [file normalize [file join [file dirname \ [file dirname $test_all_path]] Library Tests]] } if {![file exists $test_path] || ![file isdirectory $test_path]} then { set test_path [file normalize [file join [file dirname \ $test_all_path] Tests]] } if {![file exists $test_path] || ![file isdirectory $test_path]} then { set test_path [file normalize [file join [file dirname \ [file dirname $test_all_path]] Tests]] } } set no(prologue.eagle) true set no(epilogue.eagle) true set test_time [time { runAllTests $test_channel $test_path \ |
︙ | ︙ |