diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2005-07-05 00:11:50 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2005-07-05 00:11:50 +0000 |
commit | cec1d3b41462de53d2e9dde53e4483c4ca03076f (patch) | |
tree | 045c67d3b6f0cd675583523ff941d34c77940c87 /newlib/testsuite/lib/checkoutput.exp | |
parent | 0740b418fc878fde6d0d25afb16d367dd775f27d (diff) | |
download | cygnal-cec1d3b41462de53d2e9dde53e4483c4ca03076f.tar.gz cygnal-cec1d3b41462de53d2e9dde53e4483c4ca03076f.tar.bz2 cygnal-cec1d3b41462de53d2e9dde53e4483c4ca03076f.zip |
2005-07-04 Mark Mitchell <mark@codesourcery.com>
* Makefile.am (site.exp): Set tmpdir.
* Makefile.in: Regenerated.
* testsuite/lib/checkoutput.exp (newlib_check_output): Put
executables in $tmpdir.
* testsuite/lib/flags.exp (libgloss_link_flags): Use the original
libgloss version if not running in the build directory.
* testsuite/lib/newlib.exp (newlib_init): Put testglue.o in
$tmpdir.
* testsuite/lib/passfail.exp (newlib_pass_fail): Put executables
in $tmpdir.
Diffstat (limited to 'newlib/testsuite/lib/checkoutput.exp')
-rw-r--r-- | newlib/testsuite/lib/checkoutput.exp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/newlib/testsuite/lib/checkoutput.exp b/newlib/testsuite/lib/checkoutput.exp index 8cb46925f..4bf7438af 100644 --- a/newlib/testsuite/lib/checkoutput.exp +++ b/newlib/testsuite/lib/checkoutput.exp @@ -9,10 +9,10 @@ # It assumes one line of output per test. proc newlib_check_output { srcfile expectlist } { - global objdir subdir srcdir + global subdir srcdir tmpdir set srcfullname "$srcdir/$subdir/$srcfile" - set test_driver "$objdir/testsuite/[file tail [file rootname $srcfullname].x]" + set test_driver "$tmpdir/[file tail [file rootname $srcfullname].x]" set comp_output [newlib_target_compile "$srcfullname" "$test_driver" "executable" ""] |