This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

libstdc++ execute tests


On my boxen, every single libstdc++ execute test fails.  After much
trial and error, I discovered that the testsuite requires "." to be
in your path.  This appears to fix things.


r~


Index: libstdc++.exp
===================================================================
RCS file: /cvs/gcc/gcc/libstdc++-v3/testsuite/lib/libstdc++.exp,v
retrieving revision 1.6
diff -c -p -d -u -r1.6 libstdc++.exp
--- libstdc++.exp	2001/04/02 23:40:01	1.6
+++ libstdc++.exp	2001/04/10 22:10:22
@@ -545,7 +545,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"


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]