libstdc++.exp (v3-list-tests): Use testsuite_files from correct multilib blddir when...
authorDavid Billinghurst <David.Billinghurst@riotinto.com>
Mon, 1 Mar 2004 04:30:49 +0000 (04:30 +0000)
committerDavid Billinghurst <billingd@gcc.gnu.org>
Mon, 1 Mar 2004 04:30:49 +0000 (04:30 +0000)
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.

From-SVN: r78692

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

index 1e508e92bab22a4288e5e95d7bdc2c5cfe184b7d..452556545a67b902a51e06e4d1c44b2a9fde1850 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 12c208851288bc417488e2fecb5cd03dcb852d5a..e2c8ddd808832049e0d3e44c71cb4c9828d2f9da 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]