Skip to content

Commit

Permalink
test: exclude multithreading from coverage test
Browse files Browse the repository at this point in the history
  • Loading branch information
c-dilks committed Dec 11, 2024
1 parent 794b2ca commit 4355e49
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions src/iguana/tests/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -64,15 +64,15 @@ foreach algo : algo_dict
'-m', concurrency_model,
'-V', # vary run number
]
test(
'-'.join(['multithreading', concurrency_model, test_name_algo]),
test_exe,
suite: [ 'algorithm', 'multithreading', concurrency_model ],
args: multithreading_args + [ '-n', get_option('test_num_events') ] + test_args,
is_parallel: false,
env: project_test_env,
timeout: 0,
)
# test(
# '-'.join(['multithreading', concurrency_model, test_name_algo]),
# test_exe,
# suite: [ 'algorithm', 'multithreading', concurrency_model ],
# args: multithreading_args + [ '-n', get_option('test_num_events') ] + test_args,
# is_parallel: false,
# env: project_test_env,
# timeout: 0,
# )
benchmark(
'-'.join(['benchmark', f'multithreading_@concurrency_model@', test_name_algo]),
test_exe,
Expand Down

0 comments on commit 4355e49

Please sign in to comment.