From d93aa33514f7b0ccf084c7284802f079d41ea061 Mon Sep 17 00:00:00 2001 From: Jason Merrill Date: Thu, 12 Apr 2001 09:35:24 -0400 Subject: [PATCH] libstdc++.exp (libstdc++-dg-test): Prepend "./" to output_file. * testsuite/lib/libstdc++.exp (libstdc++-dg-test): Prepend "./" to output_file. (dg-test): Revert rth's change. From-SVN: r41301 --- libstdc++-v3/ChangeLog | 6 ++++++ libstdc++-v3/testsuite/lib/libstdc++.exp | 3 ++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 50cf9ecb3b2..c44e9c40ac5 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,9 @@ +2001-04-12 Jason Merrill + + * testsuite/lib/libstdc++.exp (libstdc++-dg-test): Prepend "./" to + output_file. + (dg-test): Revert rth's change. + 2001-04-12 Nathan Sidwell * libsupc++/eh_alloc.cc (__cxa_allocate_exception): Don't diff --git a/libstdc++-v3/testsuite/lib/libstdc++.exp b/libstdc++-v3/testsuite/lib/libstdc++.exp index ea148e69fe0..b237d686373 100644 --- a/libstdc++-v3/testsuite/lib/libstdc++.exp +++ b/libstdc++-v3/testsuite/lib/libstdc++.exp @@ -178,6 +178,7 @@ proc libstdc++-dg-test { testfile compile_type additional-options } { libstdc++-process-options $testfile set output_file [file rootname [file tail $testfile]] + set output_file "./$output_file" switch $compile_type { "preprocess" { set lt $lib_env(CXX) @@ -545,7 +546,7 @@ proc dg-test { args } { warning "$name compilation failed to produce executable" } else { set status -1 - set result [${tool}_load ./$output_file] + set result [${tool}_load $output_file] set status [lindex $result 0]; set output [lindex $result 1]; #send_user "After exec, status: $status\n"