From 3b61172324b9d284f12bf51c7537a4778df73ee4 Mon Sep 17 00:00:00 2001 From: Dave Korn Date: Wed, 20 May 2009 13:40:38 +0000 Subject: * lib/ld-lib.exp (run_ld_link_tests): Filter test names against runtests list. --- ld/testsuite/lib/ld-lib.exp | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'ld/testsuite/lib') diff --git a/ld/testsuite/lib/ld-lib.exp b/ld/testsuite/lib/ld-lib.exp index c90ef449cb..e11753de3f 100644 --- a/ld/testsuite/lib/ld-lib.exp +++ b/ld/testsuite/lib/ld-lib.exp @@ -1132,9 +1132,15 @@ proc run_ld_link_tests { ldtests } { global env global CC global CFLAGS + global runtests foreach testitem $ldtests { set testname [lindex $testitem 0] + + if ![runtest_file_p $runtests $testname] then { + continue + } + set ld_options [lindex $testitem 1] set as_options [lindex $testitem 2] set src_files [lindex $testitem 3] -- cgit v1.2.1