2004-03-01 David Billinghurst <David.Billinghurst@riotinto.com>
authorbillingd <billingd@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 1 Mar 2004 04:30:49 +0000 (04:30 +0000)
committerbillingd <billingd@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 1 Mar 2004 04:30:49 +0000 (04:30 +0000)
* testsuite/lib/libstdc++.exp (v3-list-tests): Use
testsuite_files from correct multilib blddir when running
testsuite.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@78692 138bc75d-0d04-0410-961f-82ee72b054a4

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

index 1e508e9..4525565 100644 (file)
@@ -1,3 +1,9 @@
+2004-03-01  David Billinghurst <David.Billinghurst@riotinto.com>
+
+       * testsuite/lib/libstdc++.exp (v3-list-tests): Use 
+       testsuite_files from correct multilib blddir when running
+       testsuite.
+
 2004-02-29  Phil Edwards  <phil@codesourcery.com>
 
        * testsuite/Makefile.am (check-abi, check-abi-verbose):  Copy
index 12c2088..e2c8ddd 100644 (file)
@@ -306,11 +306,15 @@ proc v3_target_compile { source dest type options } {
 # Called once, from libstdc++/normal.exp.
 proc v3-list-tests { filename } {
     global srcdir
-    global outdir
-    
-    set tests_file "${outdir}/${filename}"
+    global blddir
+
+    set tests_file "${blddir}/testsuite/${filename}"
     set sfiles ""
 
+    verbose -log "In v3-list-tests"
+    verbose -log "blddir = ${blddir}"
+    verbose -log "tests_file = $tests_file"
+
     # If there is a testsuite_file, use it. 
     if { [file exists $tests_file] } {
         set f [open $tests_file]