From 78690bb5d090563cf836de7c5145850d8f26eaab Mon Sep 17 00:00:00 2001 From: Yu Watanabe Date: Sat, 1 Jun 2019 15:55:16 +0900 Subject: [PATCH] test-network: disable SystemCallFilter= when *SAN is enabled --- test/test-network/systemd-networkd-tests.py | 2 ++ 1 file changed, 2 insertions(+) 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']