summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJon Turney <jon.turney@dronecode.org.uk>2018-09-27 17:15:49 +0100
committerJon Turney <jon.turney@dronecode.org.uk>2018-09-27 19:21:12 +0100
commit7d7ac8834d5a881ff642562d93eeb66c8de569e3 (patch)
treefb5cbd52074e663fd8173bb10c1b654d6694919a
parent8099aab60815141b1ca9d9b15bb8a1599457901a (diff)
Ensure tests don't get run in parallel
-rw-r--r--test/meson.build2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/meson.build b/test/meson.build
index d413e9da5..cf35980f0 100644
--- a/test/meson.build
+++ b/test/meson.build
@@ -12,6 +12,7 @@ if get_option('xvfb')
test('xvfb-piglit', find_program('scripts/xvfb-piglit.sh'),
env: piglit_env,
timeout: 1200,
+ is_parallel: false,
)
if get_option('xephyr') and build_glamor
@@ -19,6 +20,7 @@ if get_option('xvfb')
find_program('scripts/xephyr-glamor-piglit.sh'),
env: piglit_env,
timeout: 1200,
+ is_parallel: false,
)
endif
endif