mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-07-01 18:32:32 +08:00
* lib/ld-lib.exp (run_ld_link_tests): Filter test names against
runtests list.
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
2009-05-20 Dave Korn <dave.korn.cygwin@gmail.com>
|
||||||
|
|
||||||
|
* lib/ld-lib.exp (run_ld_link_tests): Filter test names against
|
||||||
|
runtests list.
|
||||||
|
|
||||||
2009-05-19 Dave Korn <dave.korn.cygwin@gmail.com>
|
2009-05-19 Dave Korn <dave.korn.cygwin@gmail.com>
|
||||||
|
|
||||||
* ld-pe/aligncomm-1.c: New test source file.
|
* ld-pe/aligncomm-1.c: New test source file.
|
||||||
|
@ -1132,9 +1132,15 @@ proc run_ld_link_tests { ldtests } {
|
|||||||
global env
|
global env
|
||||||
global CC
|
global CC
|
||||||
global CFLAGS
|
global CFLAGS
|
||||||
|
global runtests
|
||||||
|
|
||||||
foreach testitem $ldtests {
|
foreach testitem $ldtests {
|
||||||
set testname [lindex $testitem 0]
|
set testname [lindex $testitem 0]
|
||||||
|
|
||||||
|
if ![runtest_file_p $runtests $testname] then {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
set ld_options [lindex $testitem 1]
|
set ld_options [lindex $testitem 1]
|
||||||
set as_options [lindex $testitem 2]
|
set as_options [lindex $testitem 2]
|
||||||
set src_files [lindex $testitem 3]
|
set src_files [lindex $testitem 3]
|
||||||
|
Reference in New Issue
Block a user