From 791debdc4ae18b2b22842b1fb28a26e93633ce7b Mon Sep 17 00:00:00 2001 From: Ebrahim Byagowi Date: Thu, 21 May 2020 07:15:09 +0430 Subject: [PATCH] [meson][ci] Don't run subset fuzzer test in parallel resolves https://github.com/harfbuzz/harfbuzz/runs/695051808#step:6:595 failure --- test/fuzzing/meson.build | 1 + 1 file changed, 1 insertion(+) diff --git a/test/fuzzing/meson.build b/test/fuzzing/meson.build index 994f076c3..9a903908f 100644 --- a/test/fuzzing/meson.build +++ b/test/fuzzing/meson.build @@ -36,6 +36,7 @@ test('subset_fuzzer', find_program('run-subset-fuzzer-tests.py'), # 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, + is_parallel: false workdir: join_paths(meson.current_build_dir(), '..', '..'), env: env)