Skip to content

Commit 959f2b2

Browse files
committed
Reduce validation test suite execution time by removing -workers auto
* `-workers auto` was being used alongside `-workers 2`. * In some environments, `-workers auto` appears to resolve to `-workers 1`, even on multicore systems (suggesting core detection may be unreliable). * Most validation tests have small state spaces and gain little benefit from higher worker counts, making `-workers auto` unnecessary overhead.
1 parent 0e446e6 commit 959f2b2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

testgen/spec.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ def prepare_testcases(feature_filter, symmetry, anomalous):
216216
# CMD options combinations
217217
# So far only `-workers` option varies
218218
cmd_options_ref = ['-workers', '1']
219-
workers_options = ['2', 'auto']
219+
workers_options = ['2']
220220
cmd_options_variants = [(f'-workers {opt}', ['-workers', opt]) for opt in workers_options]
221221

222222
new_testcases = []

0 commit comments

Comments
 (0)