From: Akim Demaille Date: Fri, 21 Dec 2012 12:23:54 +0000 (+0100) Subject: tests: be robust to set -e. X-Git-Tag: v2.7.90~240 X-Git-Url: https://git.saurik.com/bison.git/commitdiff_plain/a89a5b1442d6e9fecb306725a2f5426d9f3fbf90 tests: be robust to set -e. * examples/test (run): here. --- diff --git a/examples/test b/examples/test index d320a288..6d2b96e6 100755 --- a/examples/test +++ b/examples/test @@ -54,9 +54,9 @@ run () # Expected output. local out_exp=$1 shift - $prog "$@" - out_eff # Effective exit status. - local sta_eff=$? + local sta_eff=0 + $prog "$@" - out_eff || sta_eff=$? # Effective output. local out_eff=`cat out_eff` if test $sta_eff -eq $sta_exp; then