1
0
mirror of https://passt.top/passt synced 2024-06-29 22:42:46 +00:00

test/run: Return 0 from run(), exit value already reflects failures

There's no need to return non-zero if there have been failures in
run(), because the exit value is already determined from the number
of failures reported in the log file.

Return zero, so that this doesn't cause the script to fail, given we
now run it with -e.

Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
This commit is contained in:
Stefano Brivio 2022-05-17 14:18:41 +02:00
parent cfa8a78a39
commit b4d41ac4b6

View File

@ -110,7 +110,7 @@ run() {
"Interrupted, press any key to quit" \
9
return ${STATUS_FAIL}
return 0
}
# demo() - Simpler path for demo purposes