1
0
mirror of https://github.com/systemd/systemd.git synced 2025-01-23 02:04:32 +03:00

TEST-36-NUMAPOLICY: Skip when running with sanitizers

The test does not work under sanitizers as strace is used. Until the
test is fixed to not use strace let's skip it when running with
sanitizers.
This commit is contained in:
Daan De Meyer 2024-05-27 10:23:38 +02:00
parent 8acb02f395
commit 0cd488617c

View File

@ -3,6 +3,11 @@
set -eux
set -o pipefail
if [[ -n "${ASAN_OPTIONS:-}" ]]; then
echo "This test does not support running with sanitizers, skipping the test" | tee --append /skipped
exit 77
fi
# shellcheck disable=SC2317
at_exit() {
# shellcheck disable=SC2181