aboutsummaryrefslogtreecommitdiff
path: root/libjava
diff options
context:
space:
mode:
authorDavid Billinghurst <David.Billinghurst@riotinto.com>2002-05-04 03:38:14 +0000
committerDavid Billinghurst <billingd@gcc.gnu.org>2002-05-04 03:38:14 +0000
commit1c177c18164f86bda1fbbd01e23d740319860844 (patch)
tree5c5db45274bffb77751e2ed913818a587e4863d0 /libjava
parent935bfb44f59e241fde8cb69710878703fe3190f1 (diff)
downloadgcc-1c177c18164f86bda1fbbd01e23d740319860844.zip
gcc-1c177c18164f86bda1fbbd01e23d740319860844.tar.gz
gcc-1c177c18164f86bda1fbbd01e23d740319860844.tar.bz2
libjava.exp (test_libjava_from_source): Append .exe to executable names.
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. From-SVN: r53143
Diffstat (limited to 'libjava')
-rw-r--r--libjava/ChangeLog7
-rw-r--r--libjava/testsuite/lib/libjava.exp1
2 files changed, 8 insertions, 0 deletions
diff --git a/libjava/ChangeLog b/libjava/ChangeLog
index 46105fe..b6fd754 100644
--- a/libjava/ChangeLog
+++ b/libjava/ChangeLog
@@ -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>
diff --git a/libjava/testsuite/lib/libjava.exp b/libjava/testsuite/lib/libjava.exp
index 46b0e6a..f5bafd4 100644
--- a/libjava/testsuite/lib/libjava.exp
+++ b/libjava/testsuite/lib/libjava.exp
@@ -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 != "" } {