OSDN Git Service

2002-05-04 David Billinghurst <David.Billinghurst@riotinto.com>
authorbillingd <billingd@138bc75d-0d04-0410-961f-82ee72b054a4>
Sat, 4 May 2002 03:38:14 +0000 (03:38 +0000)
committerbillingd <billingd@138bc75d-0d04-0410-961f-82ee72b054a4>
Sat, 4 May 2002 03:38:14 +0000 (03:38 +0000)
* testsuite/lib/libjava.exp (test_libjava_from_source):
Append .exe to executable names.  If no suffix is present,
then ".exe" is added by default on win32.  Harmless
elsewhere so always do it.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@53143 138bc75d-0d04-0410-961f-82ee72b054a4

libjava/ChangeLog
libjava/testsuite/lib/libjava.exp

index 46105fe..b6fd754 100644 (file)
@@ -1,3 +1,10 @@
+2002-05-04  David Billinghurst  <David.Billinghurst@riotinto.com>
+
+       * testsuite/lib/libjava.exp (test_libjava_from_source):
+       Append .exe to executable names.  If no suffix is present,
+       then ".exe" is added by default on win32.  Harmless
+       elsewhere so always do it.
+
 2002-05-03  David Billinghurst  <David.Billinghurst@riotinto.com>
            Tom Tromey  <tromey@redhat.com>
 
index 46b0e6a..f5bafd4 100644 (file)
@@ -452,6 +452,7 @@ proc test_libjava_from_source { options srcfile compile_args inpfile resultfile
        append executable ".o"
        set target object
     } else {
+        append executable ".exe"
        set target executable
     }
     if { $compile_args != "" } {