mirror of
https://github.com/gnustep/tools-make.git
synced 2025-04-23 06:10:50 +00:00
fix failfast status
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@32216 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
a606416c05
commit
1cb87d2dc2
2 changed files with 3 additions and 3 deletions
|
@ -211,7 +211,7 @@ run_test_file ()
|
|||
export GSTESTMODE
|
||||
$RUNCMD $run_args $TESTFILE > $CWD/tests.tmp 2>&1
|
||||
RUNEXIT=$?
|
||||
if test "$RUNEXIT" != "0" -a "$RUNEXIT" != "999"
|
||||
if test "$RUNEXIT" != "0" -a "$RUNEXIT" != "99"
|
||||
then
|
||||
echo "Failed script: $TESTFILE" >> $CWD/tests.tmp
|
||||
fi
|
||||
|
|
|
@ -182,7 +182,7 @@ then
|
|||
then
|
||||
mv GNUmakefile.bck GNUmakefile
|
||||
fi
|
||||
exit 999
|
||||
exit 99
|
||||
fi
|
||||
else
|
||||
# We want aggressive memory checking.
|
||||
|
@ -216,7 +216,7 @@ then
|
|||
then
|
||||
mv GNUmakefile.bck GNUmakefile
|
||||
fi
|
||||
exit 999
|
||||
exit 99
|
||||
fi
|
||||
fi
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue