From 78622231ac6da55bf86e598a7bca9e50471c03ab Mon Sep 17 00:00:00 2001 From: Ebrahim Byagowi Date: Tue, 24 Mar 2020 19:39:42 +0430 Subject: [PATCH] [meson] More comment on tests are causing timeout failure --- test/fuzzing/meson.build | 3 ++- test/subset/meson.build | 5 +++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/test/fuzzing/meson.build b/test/fuzzing/meson.build index d14fb165a..527ba4fcb 100644 --- a/test/fuzzing/meson.build +++ b/test/fuzzing/meson.build @@ -36,7 +36,8 @@ test('subset_fuzzer', python3, files('run-subset-fuzzer-tests.py')[0], 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, workdir: join_paths(meson.current_build_dir(), '..', '..'), env: env) diff --git a/test/subset/meson.build b/test/subset/meson.build index 0e05b2eb7..ef30bd82a 100644 --- a/test/subset/meson.build +++ b/test/subset/meson.build @@ -30,9 +30,10 @@ foreach t : tests hb_subset, join_paths(meson.current_source_dir(), 'data', 'tests', fname), ], - workdir: join_paths(meson.current_build_dir(), '..', '..'), - # 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, + workdir: join_paths(meson.current_build_dir(), '..', '..'), ) endforeach