Enable jdk11 tests by default
Tests with JDK11 enabled by default only take a dozen more seconds
so we can enable them by default.
We need to be careful though, on the long run, if more tests use
the new multi-JDK test infrastructure (specifically long running tests)
then having jdk8/9/11 may be too long. We'll see when we get there.
Change-Id: I0b0f14712275e2635c4e10a3d68ed6d8bbed62c6
diff --git a/tools/test.py b/tools/test.py
index a37329f..2815834 100755
--- a/tools/test.py
+++ b/tools/test.py
@@ -263,7 +263,7 @@
runtimes = ['dex-' + art_vm]
# Only append the "none" runtime and JVMs if running on the "default" DEX VM.
if art_vm == "default":
- runtimes.extend(['jdk8', 'jdk9', 'none'])
+ runtimes.extend(['jdk8', 'jdk9', 'jdk11', 'none'])
return_code = gradle.RunGradle(
gradle_args + [
'-Pdex_vm=%s' % art_vm + vm_suffix,