Build sandbox test only if seccomp enabled

This commit is contained in:
Sebastian Ramacher 2020-07-27 18:44:52 +02:00
parent 41e14218ef
commit 3a20080210

View file

@ -24,15 +24,17 @@ if check.found()
test('session', session,
timeout: 60*60
)
sandbox = executable('test_sandbox', ['test_sandbox.c', 'tests.c'],
dependencies: build_dependencies + test_dependencies,
include_directories: include_directories,
c_args: defines + flags
)
test('sandbox', sandbox,
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', sandbox,
timeout: 60*60
)
endif
utils = executable('test_utils', ['test_utils.c', 'tests.c'],
dependencies: build_dependencies + test_dependencies,