* ld-cris/cris.exp (loop over $srcdir/$subdir/*dso-*.d): Apply
authorHans-Peter Nilsson <hp@axis.com>
Tue, 30 Mar 2010 23:16:46 +0000 (23:16 +0000)
committerHans-Peter Nilsson <hp@axis.com>
Tue, 30 Mar 2010 23:16:46 +0000 (23:16 +0000)
"file rootname", not "file tail", before applying runtest_file_p.

ld/testsuite/ChangeLog
ld/testsuite/ld-cris/cris.exp

index f7aeed754611fba3bdc0af2b3152b0857ee90cc3..039b9993a8bbcd5769c3bc713aa5dfcb1cb361ef 100644 (file)
@@ -1,3 +1,8 @@
+2010-03-31  Hans-Peter Nilsson  <hp@axis.com>
+
+       * ld-cris/cris.exp (loop over $srcdir/$subdir/*dso-*.d): Apply
+       "file rootname", not "file tail", before applying runtest_file_p.
+
 2010-03-29  Daniel Jacobowitz  <dan@codesourcery.com>
 
        * ld-arm/arm-elf.exp (armeabitests): Add v6-M farcall test.
index 82b817100173cbb88be80547d3ce2c7e6e21ee1b..ebe4bffe08ea1d6ab8f7c665418a8c11054176b8 100644 (file)
@@ -31,13 +31,11 @@ set rd_test_list [lsort [glob -nocomplain $srcdir/$subdir/*.d]]
 # DSO.  Copy the file from the run_dump_test "tmpdir/dump" to a unique
 # expected name.
 # FIXME: Add option "output: filename" to run_dump_test.
-# FIXME: Add option "ldtail: option" to run_dump_test, so we can link
-# libraries in the right order.
 foreach atest $rd_test_list {
     # We need to check against runtest_file_p too, or we'd mindlessly copy
     # the last tmpdir/dump in selective test-runs.
     if { [string match $srcdir/$subdir/*dso-*.d $atest] \
-           && [runtest_file_p $runtests [file tail $atest]] } {
+           && [runtest_file_p $runtests [file rootname $atest]] } {
        verbose [file rootname $atest]
        run_dump_test [file rootname $atest]
        set cmd "cp tmpdir/dump tmpdir/[file rootname [file tail $atest]].so"