Skip to content

Commit b193419

Browse files
committed
Allow multiple threads and panicking tests when testing regex
I guess this was a leftover from very early in the development of cg_clif. Allowing multiple threads significantly improves performance, while panicking tests can run now thanks to -Zpanic-abort-tests.
1 parent 19ed213 commit b193419

File tree

1 file changed

+1
-9
lines changed

1 file changed

+1
-9
lines changed

build_system/tests.rs

+1-9
Original file line numberDiff line numberDiff line change
@@ -187,15 +187,7 @@ const EXTENDED_SYSROOT_SUITE: &[TestCase] = &[
187187

188188
if runner.is_native {
189189
let mut run_cmd = REGEX.test(&runner.target_compiler, &runner.dirs);
190-
run_cmd.args([
191-
"--tests",
192-
"--",
193-
"--exclude-should-panic",
194-
"--test-threads",
195-
"1",
196-
"-Zunstable-options",
197-
"-q",
198-
]);
190+
run_cmd.args(["--tests", "--", "-q"]);
199191
spawn_and_wait(run_cmd);
200192
} else {
201193
eprintln!("Cross-Compiling: Not running tests");

0 commit comments

Comments
 (0)