summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorRichard Leitner <richard.leitner@skidata.com>2020-04-21 13:00:22 +0200
committerRichard Leitner <richard.leitner@skidata.com>2020-11-09 14:29:49 +0100
commitf66b83882e076f339dd89e88165bd7bac121f9ff (patch)
treeca7eafceb9735f4c5cb5d2d574bf94b42d6c29b6 /lib
parent6e84638d77ac921aac46649095bca5ddbde94d2a (diff)
downloadmeta-java-g0hl1n/jdk14.tar.gz
openjdk-14: add 14.0.1g0hl1n/jdk14
Add support for OpenJDK and OpenJRE v14.0.1. This version of OpenJDK is bootstrapped from a host-provided JDK. The host provided JDK is used to build openjdk-14-native. The native build is then used as build-jdk for the cross version. Signed-off-by: Richard Leitner <richard.leitner@skidata.com>
Diffstat (limited to 'lib')
-rw-r--r--lib/oeqa/runtime/cases/java.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/oeqa/runtime/cases/java.py b/lib/oeqa/runtime/cases/java.py
index c1e1498..efee6e1 100644
--- a/lib/oeqa/runtime/cases/java.py
+++ b/lib/oeqa/runtime/cases/java.py
@@ -69,12 +69,12 @@ class JavaTest(OERuntimeTestCase):
69 69
70 # As OpenJDK-8 doesn't support compiled mode (JIT) for arm yet we skip this 70 # As OpenJDK-8 doesn't support compiled mode (JIT) for arm yet we skip this
71 # test for now. 71 # test for now.
72 @OEHasPackage(["openjre-8", "openjdk-8"]) 72 @OEHasPackage(["!openjdk-7-jre", "!openjdk-7"])
73 @OETestDepends(['java.JavaTest.test_java_exists']) 73 @OETestDepends(['java.JavaTest.test_java_exists'])
74 @skipIfInDataVar('TUNE_FEATURES', 'armv4', 'OpenJDK 8 compiled mode not yet supported for armv4') 74 @skipIfInDataVar('TUNE_FEATURES', 'armv4', 'OpenJDK 8 compiled mode not yet supported for armv4')
75 @skipIfInDataVar('TUNE_FEATURES', 'armv5', 'OpenJDK 8 compiled mode not yet supported for armv5') 75 @skipIfInDataVar('TUNE_FEATURES', 'armv5', 'OpenJDK 8 compiled mode not yet supported for armv5')
76 @skipIfInDataVar('TUNE_FEATURES', 'armv6', 'OpenJDK 8 compiled mode not yet supported for armv6') 76 @skipIfInDataVar('TUNE_FEATURES', 'armv6', 'OpenJDK 8 compiled mode not yet supported for armv6')
77 def test_java8_jar_comp_mode(self): 77 def test_java_jar_comp_mode(self):
78 status, output = self.target.run('java -showversion -Xcomp -jar /tmp/test.jar') 78 status, output = self.target.run('java -showversion -Xcomp -jar /tmp/test.jar')
79 msg = 'Exit status was not 0. Output: %s' % output 79 msg = 'Exit status was not 0. Output: %s' % output
80 self.assertEqual(status, 0, msg=msg) 80 self.assertEqual(status, 0, msg=msg)