summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xtest/utils/regen-test-files16
1 files changed, 10 insertions, 6 deletions
diff --git a/test/utils/regen-test-files b/test/utils/regen-test-files
index 34c10d5d8a..de281ce9b7 100755
--- a/test/utils/regen-test-files
+++ b/test/utils/regen-test-files
@@ -1027,8 +1027,11 @@ class Generator:
"CTS Libcore non-OJ tests", ["CtsLibcoreTestCases"], cts_libcore_tests_shard_num, 2020)
mts_test_shards.append(cts_libcore_tests_shard)
- # Other CTS Libcore tests shard.
- other_cts_libcore_tests_shard_num = len(mts_test_shards)
+ # Other CTS tests shard.
+ other_cts_tests_shard_num = len(mts_test_shards)
+ other_cts_art_tests_shard_tests = [
+ "CtsJvmtiRunTest988HostTestCases",
+ ]
other_cts_libcore_tests_shard_tests = [
"CtsLibcoreApiEvolutionTestCases",
"CtsLibcoreFileIOTestCases",
@@ -1039,10 +1042,11 @@ class Generator:
"MtsLibcoreOkHttpTestCases",
"MtsLibcoreBouncyCastleTestCases",
]
- other_cts_libcore_tests_shard = self.create_mts_test_shard(
- "CTS Libcore OJ tests", other_cts_libcore_tests_shard_tests,
- other_cts_libcore_tests_shard_num, 2021)
- mts_test_shards.append(other_cts_libcore_tests_shard)
+ other_cts_tests_shard_tests = \
+ other_cts_art_tests_shard_tests + other_cts_libcore_tests_shard_tests
+ other_cts_tests_shard = self.create_mts_test_shard(
+ "Other CTS tests", other_cts_tests_shard_tests, other_cts_tests_shard_num, 2021)
+ mts_test_shards.append(other_cts_tests_shard)
# ART gtests shard.
art_gtests_shard_num = len(mts_test_shards)