From 6e336d23598f13b8fd5af1c8f49084fb04f2b6cd Mon Sep 17 00:00:00 2001 From: Witold Filipczyk Date: Fri, 7 Oct 2022 08:35:06 +0200 Subject: [PATCH] [tests] is_parallel: false --- src/dom/test/meson.build | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/dom/test/meson.build b/src/dom/test/meson.build index 900a217b..43b10e10 100644 --- a/src/dom/test/meson.build +++ b/src/dom/test/meson.build @@ -38,11 +38,11 @@ t6 = find_program('test-sgml-parser-incremental') t7 = find_program('test-sgml-parser-lines') t8 = find_program('test-sgml-parser-random') -test('dom-configuration-basic', t1, env: test_lib, workdir: meson.current_build_dir(), should_fail: true) -test('sgml-dump-basic', t2, env: test_lib, workdir: meson.current_build_dir(), should_fail: true) -test('sgml-parser-basic', t3, env: test_lib, workdir: meson.current_build_dir(), should_fail: true) -test('sgml-parser-error', t4, env: test_lib, workdir: meson.current_build_dir(), should_fail: true) -test('sgml-parser-incomplete', t5, env: test_lib, workdir: meson.current_build_dir()) -test('sgml-parser-incremental', t6, env: test_lib, workdir: meson.current_build_dir(), should_fail: true) -test('sgml-parser-lines', t7, env: test_lib, workdir: meson.current_build_dir()) -test('sgml-parser-random', t8, env: test_lib, workdir: meson.current_build_dir(), should_fail: true) +test('dom-configuration-basic', t1, env: test_lib, workdir: meson.current_build_dir(), is_parallel: false) +test('sgml-dump-basic', t2, env: test_lib, workdir: meson.current_build_dir(), is_parallel: false) +test('sgml-parser-basic', t3, env: test_lib, workdir: meson.current_build_dir(), is_parallel: false) +test('sgml-parser-error', t4, env: test_lib, workdir: meson.current_build_dir(), is_parallel: false) +test('sgml-parser-incomplete', t5, env: test_lib, workdir: meson.current_build_dir(), is_parallel: false) +test('sgml-parser-incremental', t6, env: test_lib, workdir: meson.current_build_dir(), is_parallel: false, should_fail: true) +test('sgml-parser-lines', t7, env: test_lib, workdir: meson.current_build_dir(), is_parallel: false) +test('sgml-parser-random', t8, env: test_lib, workdir: meson.current_build_dir(), is_parallel: false, should_fail: true)