libstdc++.exp (libstdc++-dg-test): Prepend "./" to output_file.
authorJason Merrill <jason@redhat.com>
Thu, 12 Apr 2001 13:35:24 +0000 (09:35 -0400)
committerJason Merrill <jason@gcc.gnu.org>
Thu, 12 Apr 2001 13:35:24 +0000 (09:35 -0400)
        * testsuite/lib/libstdc++.exp (libstdc++-dg-test): Prepend "./" to
        output_file.
        (dg-test): Revert rth's change.

From-SVN: r41301

libstdc++-v3/ChangeLog
libstdc++-v3/testsuite/lib/libstdc++.exp

index 50cf9ec..c44e9c4 100644 (file)
@@ -1,3 +1,9 @@
+2001-04-12  Jason Merrill  <jason_merrill@redhat.com>
+
+       * testsuite/lib/libstdc++.exp (libstdc++-dg-test): Prepend "./" to
+       output_file.
+       (dg-test): Revert rth's change.
+
 2001-04-12  Nathan Sidwell  <nathan@codesourcery.com>
 
        * libsupc++/eh_alloc.cc (__cxa_allocate_exception): Don't
index ea148e6..b237d68 100644 (file)
@@ -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"