diff options
author | Tom Tromey <tromey@cygnus.com> | 2000-05-18 17:17:55 +0000 |
---|---|---|
committer | Tom Tromey <tromey@gcc.gnu.org> | 2000-05-18 17:17:55 +0000 |
commit | fcd4823055f358f830a73e0499683a68c688dc5b (patch) | |
tree | 8fda1ec1199140ca327415236d74478beefd137a /libjava/testsuite/lib | |
parent | 3eb16773fc995a6fb74d293f47e5caf98b0ca292 (diff) | |
download | gcc-fcd4823055f358f830a73e0499683a68c688dc5b.zip gcc-fcd4823055f358f830a73e0499683a68c688dc5b.tar.gz gcc-fcd4823055f358f830a73e0499683a68c688dc5b.tar.bz2 |
* lib/libjava.exp (bytecompile_file): Use exec, not system.
From-SVN: r33989
Diffstat (limited to 'libjava/testsuite/lib')
-rw-r--r-- | libjava/testsuite/lib/libjava.exp | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/libjava/testsuite/lib/libjava.exp b/libjava/testsuite/lib/libjava.exp index 3d1e8c8..cf9b9a9 100644 --- a/libjava/testsuite/lib/libjava.exp +++ b/libjava/testsuite/lib/libjava.exp @@ -49,7 +49,7 @@ proc find_gcjh {} { proc bytecompile_file { file objdir {classpath {}} } { global env global SUN_JAVAC - set dirname [file dirname $file]; + set dirname [file dirname $file] # If JDK doesn't run on your platform but some other # JDK-compatible javac does, you may set SUN_JAVAC to point to it. @@ -72,7 +72,12 @@ proc bytecompile_file { file objdir {classpath {}} } { set env(CLASSPATH) $classpath } if {[catch { - system "cd $dirname; $SUN_JAVAC $file -d $objdir 2>&1" + set here [pwd] + cd $dirname + set q [eval exec "$SUN_JAVAC [list $file] -d $objdir 2>@ stdout"] + cd $here + # "return" a result + set q $q } msg]} then { verbose "couldn't compile $file: $msg" set r 0 |