From 76207f7c2b10e2ddceef5cec56a903eaa8a7b5bb Mon Sep 17 00:00:00 2001 From: Andrew Haley Date: Wed, 4 Aug 2004 16:49:21 +0000 Subject: [PATCH] libjava.exp (bytecompile_file): Byte compile with debugging. 2004-08-04 Andrew Haley * testsuite/lib/libjava.exp (bytecompile_file): Byte compile with debugging. From-SVN: r85565 --- libjava/ChangeLog | 5 +++++ libjava/testsuite/lib/libjava.exp | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/libjava/ChangeLog b/libjava/ChangeLog index fdd047bc91a..db4f37c981a 100644 --- a/libjava/ChangeLog +++ b/libjava/ChangeLog @@ -1,3 +1,8 @@ +2004-08-04 Andrew Haley + + * testsuite/lib/libjava.exp (bytecompile_file): Byte compile with + debugging. + 2004-08-03 Nathanael Nerode * configure.in: Eliminate uses of changequote (mostly by quoting []). diff --git a/libjava/testsuite/lib/libjava.exp b/libjava/testsuite/lib/libjava.exp index ad76f8b0412..c28addf9944 100644 --- a/libjava/testsuite/lib/libjava.exp +++ b/libjava/testsuite/lib/libjava.exp @@ -109,9 +109,9 @@ proc bytecompile_file { file objdir {classpath {}} } { } set here [pwd] cd $dirname - send_log "byte compile: $javac [list $file] -d $objdir 2>@ stdout\n" + send_log "byte compile: $javac -g [list $file] -d $objdir 2>@ stdout\n" if {[catch { - set q [eval exec "$javac [list $file] -d $objdir 2>@ stdout"] + set q [eval exec "$javac -g [list $file] -d $objdir 2>@ stdout"] } msg]} then { send_log "couldn't compile $file: $msg\n" set r 0 -- 2.30.2