aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPekka Enberg <penberg@kernel.org>2012-04-02 18:06:11 +0300
committerPekka Enberg <penberg@kernel.org>2012-04-02 18:10:10 +0300
commitfe1ccd74846b7ec568745517f47f7b958b11360c (patch)
treeb73a15ebaac8d45975eb636b3cceea54e8016e34
parent1421557342af2e4db5d29fb0d65396e8cff95dd5 (diff)
downloadjato-fe1ccd74846b7ec568745517f47f7b958b11360c.tar.gz
test/functional: Enable passing test cases
Commit 1421557 ("jit: Fix argument register clobbering") fixed bunch of failing functional tests. Enable them. Signed-off-by: Pekka Enberg <penberg@kernel.org>
-rwxr-xr-xtools/test.py28
1 files changed, 14 insertions, 14 deletions
diff --git a/tools/test.py b/tools/test.py
index f20db4fc..30a3dfd8 100755
--- a/tools/test.py
+++ b/tools/test.py
@@ -74,7 +74,7 @@ TESTS = [
, ( "jvm.ObjectCreationAndManipulationTest", 0, NO_SYSTEM_CLASSLOADER, [ "i386", "x86_64" ] )
, ( "jvm.ObjectStackTest", 0, NO_SYSTEM_CLASSLOADER, [ "i386", "x86_64" ] )
, ( "jvm.ParameterPassingTest", 100, NO_SYSTEM_CLASSLOADER, [ "i386", "x86_64" ] )
-, ( "jvm.ParameterPassingLivenessTest", 1, NO_SYSTEM_CLASSLOADER, [ "i386" ] )
+, ( "jvm.ParameterPassingLivenessTest", 1, NO_SYSTEM_CLASSLOADER, [ "i386", "x86_64" ] )
, ( "jvm.PopTest", 0, NO_SYSTEM_CLASSLOADER, [ "i386", "x86_64" ] )
, ( "jvm.PrintTest", 0, NO_SYSTEM_CLASSLOADER, [ "i386" ] )
, ( "jvm.PutfieldTest", 0, NO_SYSTEM_CLASSLOADER, [ "i386", "x86_64" ] )
@@ -97,19 +97,19 @@ TESTS = [
, ( "test.java.lang.reflect.MethodTest", 0, [ ], [ "i386" ] )
, ( "test.java.lang.reflect.FieldAccessorsTest", 0, NO_SYSTEM_CLASSLOADER, [ "i386", "x86_64" ] )
, ( "test.java.lang.reflect.FieldTest", 0, [ ], [ "i386" ] )
-, ( "corrupt.CorruptedExceptionTableEndsAfterCode", 1, [ ], [ "i386" ] )
-, ( "corrupt.CorruptedExceptionTableInvalidHandlerPC", 1, [ ], [ "i386" ] )
-, ( "corrupt.CorruptedExceptionTableInvertedBorns", 1, [ ], [ "i386" ] )
-, ( "corrupt.CorruptedFallingOff", 1, [ ], [ "i386" ] )
-, ( "corrupt.CorruptedIncompleteInsn", 1, [ ], [ "i386" ] )
-, ( "corrupt.CorruptedInvalidBranchNeg", 1, [ ], [ "i386" ] )
-, ( "corrupt.CorruptedInvalidBranchNotOnInsn", 1, [ ], [ "i386" ] )
-, ( "corrupt.CorruptedInvalidBranchOut", 1, [ ], [ "i386" ] )
-, ( "corrupt.CorruptedInvalidOpcode", 1, [ ], [ "i386" ] )
-, ( "corrupt.CorruptedLoadConstantDouble", 1, [ ], [ "i386" ] )
-, ( "corrupt.CorruptedLoadConstantIndex", 1, [ ], [ "i386" ] )
-, ( "corrupt.CorruptedLoadConstantSimple", 1, [ ], [ "i386" ] )
-, ( "corrupt.CorruptedMaxLocalVar", 1, [ ], [ "i386" ] )
+, ( "corrupt.CorruptedExceptionTableEndsAfterCode", 1, [ ], [ "i386", "x86_64" ] )
+, ( "corrupt.CorruptedExceptionTableInvalidHandlerPC", 1, [ ], [ "i386", "x86_64" ] )
+, ( "corrupt.CorruptedExceptionTableInvertedBorns", 1, [ ], [ "i386", "x86_64" ] )
+, ( "corrupt.CorruptedFallingOff", 1, [ ], [ "i386", "x86_64" ] )
+, ( "corrupt.CorruptedIncompleteInsn", 1, [ ], [ "i386", "x86_64" ] )
+, ( "corrupt.CorruptedInvalidBranchNeg", 1, [ ], [ "i386", "x86_64" ] )
+, ( "corrupt.CorruptedInvalidBranchNotOnInsn", 1, [ ], [ "i386", "x86_64" ] )
+, ( "corrupt.CorruptedInvalidBranchOut", 1, [ ], [ "i386", "x86_64" ] )
+, ( "corrupt.CorruptedInvalidOpcode", 1, [ ], [ "i386", "x86_64" ] )
+, ( "corrupt.CorruptedLoadConstantDouble", 1, [ ], [ "i386", "x86_64" ] )
+, ( "corrupt.CorruptedLoadConstantIndex", 1, [ ], [ "i386", "x86_64" ] )
+, ( "corrupt.CorruptedLoadConstantSimple", 1, [ ], [ "i386", "x86_64" ] )
+, ( "corrupt.CorruptedMaxLocalVar", 1, [ ], [ "i386", "x86_64" ] )
]
def guess_arch():