Skip to content

Commit 8cdb45c

Browse files
committed
[WIP] Run only Base_Tests with --log-level TRACE on CI
1 parent e1251ac commit 8cdb45c

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

build_tools/cli/src/lib.rs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -430,10 +430,12 @@ impl Processor {
430430
}
431431
Tests::StandardLibraryInNative => {
432432
config.test_standard_library =
433-
Some(StandardLibraryTestsSelection::blacklist(vec![
434-
"Microsoft_Tests".to_string(),
433+
Some(StandardLibraryTestsSelection::whitelist(vec![
434+
"Base_Tests".to_string(),
435435
]));
436436
config.use_native_runner = true;
437+
config.add_engine_runner_arg("--log-level");
438+
config.add_engine_runner_arg("TRACE");
437439
}
438440
Tests::StdSnowflake => {
439441
config.test_standard_library =

0 commit comments

Comments
 (0)