Skip to content

Commit 7609480

Browse files
committed
[WIP] Run only Table_Tests on the CI
1 parent 8ba3654 commit 7609480

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

build_tools/cli/src/lib.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -415,8 +415,8 @@ impl Processor {
415415
self.context.repo_root.target.small_jdk.path.clone();
416416
config.small_jdk_dir = Some(small_jdk_dir.clone());
417417
config.test_standard_library =
418-
Some(StandardLibraryTestsSelection::blacklist(vec![
419-
"Microsoft_Tests".to_string(),
418+
Some(StandardLibraryTestsSelection::whitelist(vec![
419+
"Table_Tests".to_string(),
420420
]));
421421
config.add_engine_runner_arg("--jvm");
422422
config.add_engine_runner_arg(
@@ -426,8 +426,8 @@ impl Processor {
426426
}
427427
Tests::StandardLibraryInNative => {
428428
config.test_standard_library =
429-
Some(StandardLibraryTestsSelection::blacklist(vec![
430-
"Microsoft_Tests".to_string(),
429+
Some(StandardLibraryTestsSelection::whitelist(vec![
430+
"Table_Tests".to_string(),
431431
]));
432432
config.use_native_runner = true;
433433
}

0 commit comments

Comments
 (0)