A little clean up.

From-SVN: r29790
This commit is contained in:
Anthony Green
1999-10-04 03:30:54 +00:00
committed by Anthony Green
parent 3897b7b7b8
commit 0d9cd062a0
4 changed files with 13 additions and 1 deletions
@@ -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: