gcc.exp (gcc_init): Use a filename for the testglue that is unique to the tool.
authorRichard Earnshaw <rearnsha@arm.com>
Thu, 26 Sep 2002 09:51:45 +0000 (09:51 +0000)
committerRichard Earnshaw <rearnsha@gcc.gnu.org>
Thu, 26 Sep 2002 09:51:45 +0000 (09:51 +0000)
* 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
gcc/testsuite/lib/g++.exp
gcc/testsuite/lib/g77.exp
gcc/testsuite/lib/gcc.exp
gcc/testsuite/lib/objc.exp

index c7b67c682e3504c965d110475eacd8d64377b420..8be94f028d9fd481b936a8d3798a84cebb9fc84e 100644 (file)
@@ -1,3 +1,11 @@
+2002-09-26  Richard Earnshaw  <rearnsha@arm.com>
+
+       * 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  <mark@codesourcery.com>
 
        * gcc/testsuite/g++.dg/abi/empty5.C: New test.
index 4fb903eed66eb5ba68ab78a4b0bae4a6cd7ba7f6..749e1f1c2cde79872b938eac0fba9872d8328159 100644 (file)
@@ -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];
index 42780c227c90dc14d06ee6036258a7720b5dc669..8f20eb48cc88c08fefae2bdf25e619c6c6cd9f22 100644 (file)
@@ -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];
index 09e5f9e77f9c81ee739a02fd5ca53250e7840795..f090cb11f49a5dbd94ccc3b8ce8e0200f0292ee1 100644 (file)
@@ -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];
index d57b59744f04e2abf73a22b9f9671ef9ae243a14..3ec19e336ff89ae10ca62b6e6acfec6e16bc7014 100644 (file)
@@ -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];