From 10c23ed0bfda3cf077ebdad51b64f31c96d2b510 Mon Sep 17 00:00:00 2001 From: Sebastian Ramacher Date: Fri, 8 Dec 2023 19:02:05 +0100 Subject: [PATCH] CS --- tests/meson.build | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/tests/meson.build b/tests/meson.build index d2bed1d..1b2e81a 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -44,18 +44,18 @@ if check.found() test('session', xvfb, args: ['-a', '-s', '-screen 0 1400x900x24 -ac +extension GLX +render -noreset', session], timeout: 60*60 - ) + ) if seccomp.found() - sandbox = executable('test_sandbox', ['test_sandbox.c', 'tests.c'], - dependencies: build_dependencies + test_dependencies, - include_directories: include_directories, - c_args: defines + flags - ) - test('sandbox', xvfb, - args: ['-a', '-s', '-screen 0 1400x900x24 -ac +extension GLX +render -noreset', sandbox], - timeout: 60*60 - ) - endif + sandbox = executable('test_sandbox', ['test_sandbox.c', 'tests.c'], + dependencies: build_dependencies + test_dependencies, + include_directories: include_directories, + c_args: defines + flags + ) + test('sandbox', xvfb, + args: ['-a', '-s', '-screen 0 1400x900x24 -ac +extension GLX +render -noreset', sandbox], + timeout: 60*60 + ) + endif endif endif