summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--README2
-rw-r--r--lib/oeqa/runtime/cases/java.py6
2 files changed, 5 insertions, 3 deletions
diff --git a/README b/README
index f7b8782..0f510d7 100644
--- a/README
+++ b/README
@@ -78,7 +78,7 @@ Known Limitations/Bugs
78OpenJDK: 78OpenJDK:
79 The following OpenJDK version/target-architecture combinations currently 79 The following OpenJDK version/target-architecture combinations currently
80 only support "interpreted mode": 80 only support "interpreted mode":
81 openjdk-8 on arm 81 openjdk-8 on arm except armv7
82 openjdk-7 on aarch64 82 openjdk-7 on aarch64
83 openjdk-7 on x86 83 openjdk-7 on x86
84 openjdk-7 on x86-64 84 openjdk-7 on x86-64
diff --git a/lib/oeqa/runtime/cases/java.py b/lib/oeqa/runtime/cases/java.py
index f2375a4..661b208 100644
--- a/lib/oeqa/runtime/cases/java.py
+++ b/lib/oeqa/runtime/cases/java.py
@@ -3,7 +3,7 @@ import os
3from oeqa.runtime.case import OERuntimeTestCase 3from oeqa.runtime.case import OERuntimeTestCase
4from oeqa.core.decorator.depends import OETestDepends 4from oeqa.core.decorator.depends import OETestDepends
5from oeqa.core.decorator.oeid import OETestID 5from oeqa.core.decorator.oeid import OETestID
6from oeqa.core.decorator.data import skipIfDataVar 6from oeqa.core.decorator.data import skipIfDataVar, skipIfInDataVar
7from oeqa.runtime.decorator.package import OEHasPackage 7from oeqa.runtime.decorator.package import OEHasPackage
8 8
9class JavaTest(OERuntimeTestCase): 9class JavaTest(OERuntimeTestCase):
@@ -70,7 +70,9 @@ class JavaTest(OERuntimeTestCase):
70 # test for now. 70 # test for now.
71 @OEHasPackage(["openjre-8", "openjdk-8"]) 71 @OEHasPackage(["openjre-8", "openjdk-8"])
72 @OETestDepends(['java.JavaTest.test_java_exists']) 72 @OETestDepends(['java.JavaTest.test_java_exists'])
73 @skipIfDataVar('ARCH', 'arm', 'OpenJDK 8 compiled mode not yet supported for arm') 73 @skipIfInDataVar('TUNE_FEATURES', 'armv4', 'OpenJDK 8 compiled mode not yet supported for armv4')
74 @skipIfInDataVar('TUNE_FEATURES', 'armv5', 'OpenJDK 8 compiled mode not yet supported for armv5')
75 @skipIfInDataVar('TUNE_FEATURES', 'armv6', 'OpenJDK 8 compiled mode not yet supported for armv6')
74 def test_java8_jar_comp_mode(self): 76 def test_java8_jar_comp_mode(self):
75 status, output = self.target.run('java -showversion -Xcomp -jar /tmp/test.jar') 77 status, output = self.target.run('java -showversion -Xcomp -jar /tmp/test.jar')
76 msg = 'Exit status was not 0. Output: %s' % output 78 msg = 'Exit status was not 0. Output: %s' % output