Commit 51c4eb9b by Jason Merrill Committed by Jason Merrill

* g++.old-deja/old-deja.exp: Strip leading directories.

From-SVN: r20034
parent 61819ba5
1998-05-24 Jason Merrill <jason@yorick.cygnus.com> 1998-05-24 Jason Merrill <jason@yorick.cygnus.com>
* g++.old-deja/old-deja.exp: Strip leading directories.
* lib/old-dejagnu.exp: All tests fail if we got an internal compiler * lib/old-dejagnu.exp: All tests fail if we got an internal compiler
error for the line. Don't run multiple tests for the same line. error for the line. Don't run multiple tests for the same line.
......
...@@ -43,10 +43,11 @@ global GXX_UNDER_TEST ...@@ -43,10 +43,11 @@ global GXX_UNDER_TEST
# main test loop # main test loop
# #
set dirlen [expr [string length "$srcdir/$subdir"] + 1];
foreach file [lsort [find $srcdir/$subdir *.C]] { foreach file [lsort [find $srcdir/$subdir *.C]] {
# If we're only testing specific files and this isn't one of them, skip it. # If we're only testing specific files and this isn't one of them, skip it.
if ![runtest_file_p $runtests $file] then { set tfile [string range $file $dirlen end];
if ![runtest_file_p $runtests $tfile] then {
continue continue
} }
verbose "Testing $file" verbose "Testing $file"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment