Skip to content

Commit 890963d

Browse files
committed
test: don't run jobs in parallel
Since we do not have a lot of tests, we can afford to run them one after the other (no parallelism). This makes it easier to read the output because output of different tests does not interleave.
1 parent fc112b3 commit 890963d

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

src/main_test.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ int main(int argc, char *argv[]) {
1010
criterion_options.full_stats = true;
1111
criterion_options.timeout = 1;
1212
criterion_options.logging_threshold = CRITERION_INFO;
13+
criterion_options.jobs = 1;
1314

1415
struct criterion_test_set *set = criterion_initialize();
1516
if (criterion_handle_args(argc, argv, true))

0 commit comments

Comments
 (0)