diff options
author | Janis Johnson <janis187@us.ibm.com> | 2005-03-31 18:38:28 +0000 |
---|---|---|
committer | Janis Johnson <janis@gcc.gnu.org> | 2005-03-31 18:38:28 +0000 |
commit | 92cf604f5b9ffd06c0b8d2bd4a4db0ba87ba6eb9 (patch) | |
tree | 69f9141311e632739fe17f560669965ad90781a0 | |
parent | 1194911fff810ed28b05c9077371585f3e416645 (diff) | |
download | gcc-92cf604f5b9ffd06c0b8d2bd4a4db0ba87ba6eb9.zip gcc-92cf604f5b9ffd06c0b8d2bd4a4db0ba87ba6eb9.tar.gz gcc-92cf604f5b9ffd06c0b8d2bd4a4db0ba87ba6eb9.tar.bz2 |
tls.exp: Remove temporary file.
* gcc.dg/tls/tls.exp: Remove temporary file.
* g++.dg/tls/tls.exp: Ditto.
* lib/file-format.exp: Ditto.
* g++.dg/special/ecos.exp: Ditto.
From-SVN: r97344
-rw-r--r-- | gcc/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/testsuite/g++.dg/special/ecos.exp | 1 | ||||
-rw-r--r-- | gcc/testsuite/g++.dg/tls/tls.exp | 3 | ||||
-rw-r--r-- | gcc/testsuite/gcc.dg/tls/tls.exp | 1 | ||||
-rw-r--r-- | gcc/testsuite/lib/file-format.exp | 1 |
5 files changed, 10 insertions, 1 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 6c6043e..6e6601d 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,5 +1,10 @@ 2005-03-31 Janis Johnson <janis187@us.ibm.com> + * gcc.dg/tls/tls.exp: Remove temporary file. + * g++.dg/tls/tls.exp: Ditto. + * lib/file-format.exp: Ditto. + * g++.dg/special/ecos.exp: Ditto. + * lib/profopt.exp: Treat prof_ext as a list. * gcc.misc-tests/bprob.exp: Ditto. * g++.dg/bprob/bprob.exp: Ditto. diff --git a/gcc/testsuite/g++.dg/special/ecos.exp b/gcc/testsuite/g++.dg/special/ecos.exp index dc34ff8..ba1740d 100644 --- a/gcc/testsuite/g++.dg/special/ecos.exp +++ b/gcc/testsuite/g++.dg/special/ecos.exp @@ -29,6 +29,7 @@ load_lib g++-dg.exp set comp_output [g++_target_compile \ "$srcdir/$subdir/initp1.C" "initp1.S" assembly ""] +remove-build-file "initp1.S" if { [string match "*init_priority*" $comp_output] } { return 0 } diff --git a/gcc/testsuite/g++.dg/tls/tls.exp b/gcc/testsuite/g++.dg/tls/tls.exp index a00dad7..1a47848 100644 --- a/gcc/testsuite/g++.dg/tls/tls.exp +++ b/gcc/testsuite/g++.dg/tls/tls.exp @@ -23,7 +23,8 @@ load_lib g++-dg.exp # isn't, everything will fail with the "not supported" message. set comp_output [g++_target_compile \ - "$srcdir/$subdir/trivial.C" "trivial.S" assembly ""] + "$srcdir/$subdir/trivial.C" "trivialx.S" assembly ""] +remove-build-file "trivialx.S" if { [string match "*not supported*" $comp_output] } { return 0 } diff --git a/gcc/testsuite/gcc.dg/tls/tls.exp b/gcc/testsuite/gcc.dg/tls/tls.exp index 4c2627d..16b3aa8 100644 --- a/gcc/testsuite/gcc.dg/tls/tls.exp +++ b/gcc/testsuite/gcc.dg/tls/tls.exp @@ -24,6 +24,7 @@ load_lib gcc-dg.exp set comp_output [gcc_target_compile \ "$srcdir/$subdir/trivial.c" "trivial.S" assembly ""] +remove-build-file "trivial.S" if { [string match "*not supported*" $comp_output] } { return 0 } diff --git a/gcc/testsuite/lib/file-format.exp b/gcc/testsuite/lib/file-format.exp index a1aa484..fe88a3b 100644 --- a/gcc/testsuite/lib/file-format.exp +++ b/gcc/testsuite/lib/file-format.exp @@ -46,6 +46,7 @@ proc gcc_target_object_format { } { close $open_file ${tool}_target_compile objfmtst.c objfmtst.o object "" + file delete objfmtst.c catch { set output [exec $objdump_name --file-headers objfmtst.o ] |