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

@ -25,6 +25,7 @@ if check.found()
timeout: 60*60
)
if seccomp.found()
sandbox = executable('test_sandbox', ['test_sandbox.c', 'tests.c'],
dependencies: build_dependencies + test_dependencies,
include_directories: include_directories,
@ -33,6 +34,7 @@ if check.found()
test('sandbox', sandbox,
timeout: 60*60
)
endif
utils = executable('test_utils', ['test_utils.c', 'tests.c'],
dependencies: build_dependencies + test_dependencies,