diff options
author | tromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-03-07 22:44:22 +0000 |
---|---|---|
committer | tromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-03-07 22:44:22 +0000 |
commit | 03daf305dd7b2f29db8cc12f5c18e2ff42a5d358 (patch) | |
tree | 1b7925b9b2a92106e001e64530cf58284e8d5f57 /libjava/testsuite/lib | |
parent | b44474975d204140549569b5c830c3f0e6ccb473 (diff) | |
download | gcc-03daf305dd7b2f29db8cc12f5c18e2ff42a5d358.tar.gz |
* lib/libjava.exp (test_libjava_from_javac): Removed hack for
interfaces. Fail if jv-scan reports a parse error.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@32392 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava/testsuite/lib')
-rw-r--r-- | libjava/testsuite/lib/libjava.exp | 33 |
1 files changed, 20 insertions, 13 deletions
diff --git a/libjava/testsuite/lib/libjava.exp b/libjava/testsuite/lib/libjava.exp index 8f047ae359a..c561a3a7d70 100644 --- a/libjava/testsuite/lib/libjava.exp +++ b/libjava/testsuite/lib/libjava.exp @@ -495,20 +495,27 @@ proc test_libjava_from_javac { options srcfile compile_args inpfile resultfile e [target_compile $srcfile "" none \ "compiler=$jvscan additional_flags=--list-class"]] verbose "class list is $class_out" - # FIXME: As of Wed Feb 24 1999, `jv-scan --list-class' prints - # nothing if the file contains an interface and not a class. I - # believe this is a jv-scan bug. - if {$class_out == ""} then { - set class_files \ - [list $objdir/[file rootname [file tail $srcfile]].class] - } else { - # Turn "a b" into "a.class b.class". - # Also, turn "foo.bar" into "foo/bar.class". - set class_files {} - foreach file [split [string trim $class_out]] { - set file [join [split $file .] /] - lappend class_files $objdir/$file.class + + if {[string match "*parse error*" $main_name] + || [string match "*parse error*" $class_out]} { + # Do the remaining fails. + setup_xfail "*-*-*" + fail "$errname compilation from bytecode" + if {! [info exists opts(no-exec)]} { + setup_xfail "*-*-*" + fail "$errname execution from bytecode->native test" + setup_xfail "*-*-*" + fail "$errname output from bytecode->native test" } + return + } + + # Turn "a b" into "a.class b.class". + # Also, turn "foo.bar" into "foo/bar.class". + set class_files {} + foreach file [split [string trim $class_out]] { + set file [join [split $file .] /] + lappend class_files $objdir/$file.class } # Usually it is an error for a test program not to have a `main' |