diff options
author | Anthony Green <green@cygnus.com> | 1999-10-04 03:30:54 +0000 |
---|---|---|
committer | Anthony Green <green@gcc.gnu.org> | 1999-10-04 03:30:54 +0000 |
commit | 0d9cd062a095fa004363dccaceda82c806e966f9 (patch) | |
tree | 5866320510b1ce62f3ac85561808920621c7f751 /libjava/testsuite/libjava.compile/compile.exp | |
parent | 3897b7b7b82991a977369adcc7255befef380850 (diff) | |
download | gcc-0d9cd062a095fa004363dccaceda82c806e966f9.zip gcc-0d9cd062a095fa004363dccaceda82c806e966f9.tar.gz gcc-0d9cd062a095fa004363dccaceda82c806e966f9.tar.bz2 |
A little clean up.
From-SVN: r29790
Diffstat (limited to 'libjava/testsuite/libjava.compile/compile.exp')
-rw-r--r-- | libjava/testsuite/libjava.compile/compile.exp | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/libjava/testsuite/libjava.compile/compile.exp b/libjava/testsuite/libjava.compile/compile.exp new file mode 100644 index 0000000..3d9c13b --- /dev/null +++ b/libjava/testsuite/libjava.compile/compile.exp @@ -0,0 +1,20 @@ +global srcdir subdir + +catch "glob -nocomplain ${srcdir}/${subdir}/*.java" srcfiles +verbose "srcfiles are $srcfiles" + +set prefix "" +foreach x $srcfiles { + set args [libjava_read_xfail [file rootname $x].xfail] + if {[file exists [file rootname $x].no-link]} { + lappend args no-link + } + lappend args no-exec + + test_libjava $options "$x" "" "" "" $args + test_libjava $options "$x" "-O" "" "" $args +} + +# Local Variables: +# tcl-indent-level:4 +# End: |