diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2022-02-15 16:23:04 +0100 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2022-02-16 08:07:20 +0100 |
commit | 6b1fa539979e56c558fecaec044b307d22e7d391 (patch) | |
tree | 9e2fcc5e2f43f38b3c5131c8b71c415a88e13e8e /test/units/testsuite-36.sh | |
parent | manager: if we are reexecuting, do not invoke any fallbacks (diff) | |
download | systemd-6b1fa539979e56c558fecaec044b307d22e7d391.tar.xz systemd-6b1fa539979e56c558fecaec044b307d22e7d391.zip |
manager: add few ", ignoring" and adjust level in one message
Diffstat (limited to '')
-rwxr-xr-x | test/units/testsuite-36.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/units/testsuite-36.sh b/test/units/testsuite-36.sh index b6c00c4845..f9dfd0810c 100755 --- a/test/units/testsuite-36.sh +++ b/test/units/testsuite-36.sh @@ -181,7 +181,7 @@ else echo "PID1 NUMAPolicy support - Bind policy w/o mask" writePID1NUMAPolicy "bind" pid1ReloadWithJournal - grep "Failed to set NUMA memory policy: Invalid argument" "$journalLog" + grep "Failed to set NUMA memory policy, ignoring: Invalid argument" "$journalLog" echo "PID1 NUMAPolicy support - Bind policy w/ mask" writePID1NUMAPolicy "bind" "0" @@ -191,7 +191,7 @@ else echo "PID1 NUMAPolicy support - Interleave policy w/o mask" writePID1NUMAPolicy "interleave" pid1ReloadWithJournal - grep "Failed to set NUMA memory policy: Invalid argument" "$journalLog" + grep "Failed to set NUMA memory policy, ignoring: Invalid argument" "$journalLog" echo "PID1 NUMAPolicy support - Interleave policy w/ mask" writePID1NUMAPolicy "interleave" "0" @@ -202,7 +202,7 @@ else writePID1NUMAPolicy "preferred" pid1ReloadWithJournal # Preferred policy with empty node mask is actually allowed and should reset allocation policy to default - grep "Failed to set NUMA memory policy: Invalid argument" "$journalLog" && { echo >&2 "unexpected pass"; exit 1; } + grep "Failed to set NUMA memory policy, ignoring: Invalid argument" "$journalLog" && { echo >&2 "unexpected pass"; exit 1; } echo "PID1 NUMAPolicy support - Preferred policy w/ mask" writePID1NUMAPolicy "preferred" "0" |