[meson] More comment on tests are causing timeout failure

This commit is contained in:
Ebrahim Byagowi 2020-03-24 19:39:42 +04:30
parent 9bc792f416
commit 78622231ac
2 changed files with 5 additions and 3 deletions

View File

@ -36,7 +36,8 @@ test('subset_fuzzer', python3,
files('run-subset-fuzzer-tests.py')[0], files('run-subset-fuzzer-tests.py')[0],
hb_subset_fuzzer_exe, hb_subset_fuzzer_exe,
], ],
# as the test are ran concurrently and we have numerous ones here let's raise acceptable time # as the tests are ran concurrently let's raise acceptable time here
# ideally better to break and let meson handles them in parallel
timeout: 120, timeout: 120,
workdir: join_paths(meson.current_build_dir(), '..', '..'), workdir: join_paths(meson.current_build_dir(), '..', '..'),
env: env) env: env)

View File

@ -30,9 +30,10 @@ foreach t : tests
hb_subset, hb_subset,
join_paths(meson.current_source_dir(), 'data', 'tests', fname), join_paths(meson.current_source_dir(), 'data', 'tests', fname),
], ],
workdir: join_paths(meson.current_build_dir(), '..', '..'), # as the tests are ran concurrently let's raise acceptable time here
# as the test are ran concurrently and we have numerous ones here let's raise acceptable time # ideally better to break and let meson handles them in parallel
timeout: 120, timeout: 120,
workdir: join_paths(meson.current_build_dir(), '..', '..'),
) )
endforeach endforeach