summaryrefslogtreecommitdiff
path: root/bin/ai/regression/run.sh
diff options
context:
space:
mode:
authorglx22 <glx22@users.noreply.github.com>2019-01-13 08:40:54 +0100
committerCharles Pigott <charlespigott@googlemail.com>2019-01-13 07:40:54 +0000
commitefc44466d663466d13c93a020f5f16a3aca864ba (patch)
tree7496b89f1ff36d76547cccd36a7f6921ab48d2d2 /bin/ai/regression/run.sh
parent4fc1b2baaefad669b51d88f980aaf33670795f26 (diff)
downloadopenttd-efc44466d663466d13c93a020f5f16a3aca864ba.tar.xz
Fix: make -k switch useful when testing regression (#7053)
Diffstat (limited to 'bin/ai/regression/run.sh')
-rwxr-xr-xbin/ai/regression/run.sh12
1 files changed, 6 insertions, 6 deletions
diff --git a/bin/ai/regression/run.sh b/bin/ai/regression/run.sh
index d47a664ea..c9197c4d5 100755
--- a/bin/ai/regression/run.sh
+++ b/bin/ai/regression/run.sh
@@ -43,11 +43,11 @@ for tst in $tests; do
if [ -n "$gdb" ]; then
$gdb ./openttd -x -c ai/regression/regression.cfg $params -g $sav
else
- ./openttd -x -c ai/regression/regression.cfg $params -g $sav -d script=2 -d misc=9 2>&1 | awk '{ gsub("0x(\\(nil\\)|0+)(x0)?", "0x00000000", $0); gsub("^dbg: \\[script\\]", "", $0); gsub("^ ", "ERROR: ", $0); gsub("ERROR: \\[1\\] ", "", $0); gsub("\\[P\\] ", "", $0); print $0; }' | grep -v '^dbg: \[.*\]' > tmp.regression
+ ./openttd -x -c ai/regression/regression.cfg $params -g $sav -d script=2 -d misc=9 2>&1 | awk '{ gsub("0x(\\(nil\\)|0+)(x0)?", "0x00000000", $0); gsub("^dbg: \\[script\\]", "", $0); gsub("^ ", "ERROR: ", $0); gsub("ERROR: \\[1\\] ", "", $0); gsub("\\[P\\] ", "", $0); print $0; }' | grep -v '^dbg: \[.*\]' > $tst/tmp.regression
fi
if [ -z "$gdb" ]; then
- res="`diff -ub $tst/result.txt tmp.regression`"
+ res="`diff -ub $tst/result.txt $tst/tmp.regression`"
if [ -z "$res" ]; then
echo "passed!"
else
@@ -58,14 +58,14 @@ for tst in $tests; do
fi
rm $tst/info.nut
+
+ if [ "$1" != "-k" ]; then
+ rm -f $tst/tmp.regression
+ fi
done
if [ -f scripts/game_start.scr.regression ]; then
mv scripts/game_start.scr.regression scripts/game_start.scr
fi
-if [ "$1" != "-k" ]; then
- rm -f tmp.regression
-fi
-
exit $ret