From: Yu Watanabe Date: Sat, 1 Jun 2019 06:55:16 +0000 (+0900) Subject: test-network: disable SystemCallFilter= when *SAN is enabled X-Git-Tag: v243-rc1~324^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=78690bb5d090563cf836de7c5145850d8f26eaab;p=thirdparty%2Fsystemd.git test-network: disable SystemCallFilter= when *SAN is enabled --- diff --git a/test/test-network/systemd-networkd-tests.py b/test/test-network/systemd-networkd-tests.py index 803b7122e84..d9242cb1162 100755 --- a/test/test-network/systemd-networkd-tests.py +++ b/test/test-network/systemd-networkd-tests.py @@ -126,6 +126,8 @@ def setUpModule(): drop_in += ['Environment=LSAN_OPTIONS="' + lsan_options + '"'] if ubsan_options: drop_in += ['Environment=UBSAN_OPTIONS="' + ubsan_options + '"'] + if asan_options or lsan_options or ubsan_options: + drop_in += ['SystemCallFilter='] if use_valgrind or asan_options or lsan_options or ubsan_options: drop_in += ['MemoryDenyWriteExecute=no']