aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Haley <aph@redhat.com>2004-01-09 17:27:37 +0000
committerAndrew Haley <aph@gcc.gnu.org>2004-01-09 17:27:37 +0000
commit2fca049fe8aada42f982aff9498eb45d3a2db302 (patch)
tree8b91d27056e6dcd5395d1cf26af7f83d8ec216f2
parente6f82998527f97ca5ee843af1c86cab20a204af4 (diff)
downloadgcc-2fca049fe8aada42f982aff9498eb45d3a2db302.zip
gcc-2fca049fe8aada42f982aff9498eb45d3a2db302.tar.gz
gcc-2fca049fe8aada42f982aff9498eb45d3a2db302.tar.bz2
libjava.exp (bytecompile_file): Log compile command.
2004-01-09 Andrew Haley <aph@redhat.com> * lib/libjava.exp (bytecompile_file): Log compile command. From-SVN: r75593
-rw-r--r--libjava/testsuite/ChangeLog4
-rw-r--r--libjava/testsuite/lib/libjava.exp3
2 files changed, 6 insertions, 1 deletions
diff --git a/libjava/testsuite/ChangeLog b/libjava/testsuite/ChangeLog
index 02eab40..d1394c5 100644
--- a/libjava/testsuite/ChangeLog
+++ b/libjava/testsuite/ChangeLog
@@ -1,3 +1,7 @@
+2004-01-09 Andrew Haley <aph@redhat.com>
+
+ * lib/libjava.exp (bytecompile_file): Log compile command.
+
2004-01-07 Andreas Tobler <a.tobler@schweiz.ch>
PR libgcj/13011:
diff --git a/libjava/testsuite/lib/libjava.exp b/libjava/testsuite/lib/libjava.exp
index 9ae1882..3f55f76 100644
--- a/libjava/testsuite/lib/libjava.exp
+++ b/libjava/testsuite/lib/libjava.exp
@@ -109,10 +109,11 @@ proc bytecompile_file { file objdir {classpath {}} } {
}
set here [pwd]
cd $dirname
+ send_log "byte compile: $javac [list $file] -d $objdir 2>@ stdout\n"
if {[catch {
set q [eval exec "$javac [list $file] -d $objdir 2>@ stdout"]
} msg]} then {
- verbose "couldn't compile $file: $msg"
+ send_log "couldn't compile $file: $msg\n"
set r 0
} else {
set r 1