Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Pickup further upstream enhancements to the Eagle test suite prologue file. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
607127f1bb9a5f5b9d7eea886ae5cedc |
User & Date: | mistachkin 2015-10-01 04:07:01.109 |
Context
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 | |
2015-09-30
| ||
19:22 | Update Eagle script library in externals to the latest code. check-in: 8ddbcff542 user: mistachkin tags: trunk | |
Changes
Changes to Externals/Eagle/lib/Test1.0/prologue.eagle.
︙ | ︙ | |||
40 41 42 43 44 45 46 | set test_all_path [file normalize [file dirname [info script]]] } # # NOTE: Set the location of the test suite, if necessary. # if {![info exists test_path]} then { | > > > > > > | > > > > | > > > > > > > > > > > | 40 41 42 43 44 45 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 | set test_all_path [file normalize [file dirname [info script]]] } # # NOTE: Set the location of the test suite, if necessary. # 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]] } } # # NOTE: Set the location of the test suite data, if necessary. # if {![info exists test_data_path]} then { set test_data_path [file join $test_path data] |
︙ | ︙ |