diff options
author | Pete Gillin <peteg@google.com> | 2019-08-30 14:59:57 +0100 |
---|---|---|
committer | Pete Gillin <peteg@google.com> | 2019-08-30 17:29:45 +0100 |
commit | 38af47fc059c3ccd40ff57c51fe71bea637790bd (patch) | |
tree | 8c23f67828a02bf9f31fd0712e777e5fa31297dc /libart | |
parent | 336ee156a25fdecf545d7c02b96d8434112fc2e2 (diff) |
Add TEST_MAPPINGs for java.lang and java.util and subpackages.
This adds package-level mappings to the appropriate test
packages. There are a few special cases, such as running the JSR166
tests for java.util.concurrent.
Test: treehugger
Bug: 130283485
Change-Id: I0a8494845ee298f6293277fdcc1e6dad120f4e58
Diffstat (limited to 'libart')
-rw-r--r-- | libart/src/main/java/java/lang/TEST_MAPPING | 18 | ||||
-rw-r--r-- | libart/src/main/java/java/lang/invoke/TEST_MAPPING | 20 |
2 files changed, 38 insertions, 0 deletions
diff --git a/libart/src/main/java/java/lang/TEST_MAPPING b/libart/src/main/java/java/lang/TEST_MAPPING new file mode 100644 index 0000000000..06575f3247 --- /dev/null +++ b/libart/src/main/java/java/lang/TEST_MAPPING @@ -0,0 +1,18 @@ +{ + "presubmit": [ + { + "name": "CtsLibcoreTestCases", + "options": [ + { + "include-filter": "tests.java.lang" + }, + { + "include-filter": "org.apache.harmony.tests.java.lang" + }, + { + "include-filter": "libcore.java.lang" + } + ] + } + ] +}
\ No newline at end of file diff --git a/libart/src/main/java/java/lang/invoke/TEST_MAPPING b/libart/src/main/java/java/lang/invoke/TEST_MAPPING new file mode 100644 index 0000000000..2b6135dd91 --- /dev/null +++ b/libart/src/main/java/java/lang/invoke/TEST_MAPPING @@ -0,0 +1,20 @@ +{ + "presubmit": [ + { + "name": "CtsLibcoreTestCases", + "options": [ + { + "include-filter": "libcore.java.lang.invoke" + } + ] + }, + { + "name": "CtsLibcoreOjTestCases", + "options": [ + { + "include-filter": "org.openjdk.tests.java.lang.invoke" + } + ] + } + ] +}
\ No newline at end of file |