From 9ef0b374e5999dfa72c86159a27827295330a1f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Lesimple?= Date: Sun, 23 Aug 2020 20:01:19 +0200 Subject: [PATCH] chore: remove exit status check, sometimes non-zero is legit --- regtest/common.bash | 4 ---- 1 file changed, 4 deletions(-) diff --git a/regtest/common.bash b/regtest/common.bash index 234cd3e..f1ad6d1 100644 --- a/regtest/common.bash +++ b/regtest/common.bash @@ -178,10 +178,6 @@ function run_regtest() echo "LANG=en_EN.UTF-8 $NEWVER --regtest --no-progress -i${testiso} ${testeccopt} ${extra_args} ${testparms}" >>$LOGFILE LANG=en_EN.UTF-8 $NEWVER --regtest --no-progress -i${testiso} ${testeccopt} ${extra_args} ${testparms} 2>&1 | tail -n +3 >>$NEWLOG - ret=${PIPESTATUS[0]} - if [ $ret != 0 ]; then - echo "NON-ZERO EXIT STATUS: $ret" >>$NEWLOG - fi if ! test -r $REFLOG; then echo -e "FAIL\n$REFLOG missing in log file database"