Commit e6cbdf26 by Bryce McKinlay Committed by Bryce McKinlay

libjava.exp (test_libjava): Test bytecode->native -findirect-dispatch compilation.

2006-05-02  Bryce McKinlay  <mckinlay@redhat.com>

        * testsuite/lib/libjava.exp (test_libjava): Test bytecode->native
        -findirect-dispatch compilation.

From-SVN: r113477
parent 7137605e
2006-05-02 Bryce McKinlay <mckinlay@redhat.com>
* testsuite/lib/libjava.exp (test_libjava): Test bytecode->native
-findirect-dispatch compilation.
2006-05-01 Andreas Tobler <a.tobler@schweiz.ch> 2006-05-01 Andreas Tobler <a.tobler@schweiz.ch>
* configure.ac: Simplify the mmap check a bit more. * configure.ac: Simplify the mmap check a bit more.
......
...@@ -908,6 +908,12 @@ proc test_libjava_from_javac { options srcfile compile_args inpfile resultfile e ...@@ -908,6 +908,12 @@ proc test_libjava_from_javac { options srcfile compile_args inpfile resultfile e
proc test_libjava { options srcfile compile_args inpfile resultfile exec_args } { proc test_libjava { options srcfile compile_args inpfile resultfile exec_args } {
test_libjava_from_source $options $srcfile $compile_args $inpfile $resultfile $exec_args test_libjava_from_source $options $srcfile $compile_args $inpfile $resultfile $exec_args
test_libjava_from_javac $options $srcfile $compile_args $inpfile $resultfile $exec_args test_libjava_from_javac $options $srcfile $compile_args $inpfile $resultfile $exec_args
# Test BC-ABI compilation, currently for bytecode->native only
set compile_args_bcabi $compile_args
lappend compile_args_bcabi "-findirect-dispatch"
test_libjava_from_javac $options $srcfile $compile_args_bcabi $inpfile $resultfile $exec_args
} }
# #
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment