From 1c88948f1b1ebba802ba0c2bce77034868299478 Mon Sep 17 00:00:00 2001 From: Richard Earnshaw Date: Thu, 26 Sep 2002 09:51:45 +0000 Subject: [PATCH] gcc.exp (gcc_init): Use a filename for the testglue that is unique to the tool. * lib/gcc.exp (gcc_init): Use a filename for the testglue that is unique to the tool. * lib/g77.exp (g77_init): Likewise. * lib/g++.exp (g++_init): Likewise. * lib/objc.exp (objc_init): Likewise. From-SVN: r57532 --- gcc/testsuite/ChangeLog | 8 ++++++++ gcc/testsuite/lib/g++.exp | 2 +- gcc/testsuite/lib/g77.exp | 2 +- gcc/testsuite/lib/gcc.exp | 2 +- gcc/testsuite/lib/objc.exp | 2 +- 5 files changed, 12 insertions(+), 4 deletions(-) diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index c7b67c682e3..8be94f028d9 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,11 @@ +2002-09-26 Richard Earnshaw + + * lib/gcc.exp (gcc_init): Use a filename for the testglue that is + unique to the tool. + * lib/g77.exp (g77_init): Likewise. + * lib/g++.exp (g++_init): Likewise. + * lib/objc.exp (objc_init): Likewise. + 2002-09-25 Mark Mitchell * gcc/testsuite/g++.dg/abi/empty5.C: New test. diff --git a/gcc/testsuite/lib/g++.exp b/gcc/testsuite/lib/g++.exp index 4fb903eed66..749e1f1c2cd 100644 --- a/gcc/testsuite/lib/g++.exp +++ b/gcc/testsuite/lib/g++.exp @@ -239,7 +239,7 @@ proc g++_init { args } { } if { [target_info needs_status_wrapper] != "" } { - set gluefile ${tmpdir}/testglue.o; + set gluefile ${tmpdir}/g++-testglue.o; set result [build_wrapper $gluefile]; if { $result != "" } { set gluefile [lindex $result 0]; diff --git a/gcc/testsuite/lib/g77.exp b/gcc/testsuite/lib/g77.exp index 42780c227c9..8f20eb48cc8 100644 --- a/gcc/testsuite/lib/g77.exp +++ b/gcc/testsuite/lib/g77.exp @@ -168,7 +168,7 @@ proc g77_init { args } { } if { [target_info needs_status_wrapper] != "" } { - set gluefile ${tmpdir}/testglue.o; + set gluefile ${tmpdir}/g77-testglue.o; set result [build_wrapper $gluefile]; if { $result != "" } { set gluefile [lindex $result 0]; diff --git a/gcc/testsuite/lib/gcc.exp b/gcc/testsuite/lib/gcc.exp index 09e5f9e77f9..f090cb11f49 100644 --- a/gcc/testsuite/lib/gcc.exp +++ b/gcc/testsuite/lib/gcc.exp @@ -109,7 +109,7 @@ proc gcc_init { args } { if {[target_info needs_status_wrapper] != "" && \ [target_info needs_status_wrapper] != "0" && \ ![info exists gluefile]} { - set gluefile ${tmpdir}/testglue.o; + set gluefile ${tmpdir}/gcc-testglue.o; set result [build_wrapper $gluefile]; if { $result != "" } { set gluefile [lindex $result 0]; diff --git a/gcc/testsuite/lib/objc.exp b/gcc/testsuite/lib/objc.exp index d57b59744f0..3ec19e336ff 100644 --- a/gcc/testsuite/lib/objc.exp +++ b/gcc/testsuite/lib/objc.exp @@ -108,7 +108,7 @@ proc objc_init { args } { set tmpdir /tmp } if { [target_info needs_status_wrapper]!="" && ![info exists gluefile] } { - set gluefile ${tmpdir}/testglue.o; + set gluefile ${tmpdir}/objc-testglue.o; set result [build_wrapper $gluefile]; if { $result != "" } { set gluefile [lindex $result 0]; -- 2.30.2