mirror of
https://github.com/systemd/systemd.git
synced 2024-12-25 01:34:28 +03:00
testsuite-17.11.sh: fix assert_1()
Fix assert_1() to exit with an error status in case of a failed assertion.
This commit is contained in:
parent
8fb26ccd36
commit
75390455cb
@ -60,10 +60,12 @@ assert_0() {
|
||||
}
|
||||
|
||||
assert_1() {
|
||||
local rc
|
||||
set +e
|
||||
udevadm verify "$@" >"${out}" 2>"${err}"
|
||||
assert_eq "$?" 1
|
||||
rc=$?
|
||||
set -e
|
||||
assert_eq "$rc" 1
|
||||
|
||||
if [ -f "${exp}" ]; then
|
||||
diff -u "${exp}" "${err}"
|
||||
|
Loading…
Reference in New Issue
Block a user