jacks.exp (gcj_jacks_run): Just ignore errors from jacks.

* libjava.jacks/jacks.exp (gcj_jacks_run): Just ignore errors
	from jacks.

From-SVN: r70157
This commit is contained in:
Tom Tromey 2003-08-04 22:07:06 +00:00 committed by Tom Tromey
parent 66fe55d120
commit 2901980332
2 changed files with 9 additions and 7 deletions

View File

@ -1,3 +1,8 @@
2003-08-04 Tom Tromey <tromey@redhat.com>
* libjava.jacks/jacks.exp (gcj_jacks_run): Just ignore errors
from jacks.
2003-07-24 Tom Tromey <tromey@redhat.com> 2003-07-24 Tom Tromey <tromey@redhat.com>
For PR libgcj/7482: For PR libgcj/7482:

View File

@ -89,14 +89,11 @@ proc gcj_jacks_run {} {
gcj_jacks_write gcj_setup gcj_jacks_write gcj_setup
verbose "Running Jacks..." verbose "Running Jacks..."
if {[catch {exec ./jacks gcj} msg]} { # Just ignore error exits from the jacks program.
verbose "jacks invocation failure: $msg" # It will always error exit for us, since don't completely pass.
fail "running jacks" catch {exec ./jacks gcj} msg
} else {
pass "running jacks"
gcj_jacks_parse logging/gcj.log gcj_jacks_parse logging/gcj.log
}
cd $here cd $here
} }