Commit 1152b861 by David Billinghurst Committed by David Billinghurst

libstdc++.exp (v3-list-tests): Use testsuite_files from correct multilib blddir…

libstdc++.exp (v3-list-tests): Use testsuite_files from correct multilib blddir when running testsuite.

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
parent 5bb2ed2c
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> 2004-02-29 Phil Edwards <phil@codesourcery.com>
* testsuite/Makefile.am (check-abi, check-abi-verbose): Copy * testsuite/Makefile.am (check-abi, check-abi-verbose): Copy
......
...@@ -306,11 +306,15 @@ proc v3_target_compile { source dest type options } { ...@@ -306,11 +306,15 @@ proc v3_target_compile { source dest type options } {
# Called once, from libstdc++/normal.exp. # Called once, from libstdc++/normal.exp.
proc v3-list-tests { filename } { proc v3-list-tests { filename } {
global srcdir global srcdir
global outdir global blddir
set tests_file "${outdir}/${filename}" set tests_file "${blddir}/testsuite/${filename}"
set sfiles "" 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 there is a testsuite_file, use it.
if { [file exists $tests_file] } { if { [file exists $tests_file] } {
set f [open $tests_file] set f [open $tests_file]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment