mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-01-18 21:18:10 +00:00
(svn r26898) -Fix: hopefully make regression under MinGW work again
This commit is contained in:
parent
d87e20d6f4
commit
8415a15999
@ -30,7 +30,7 @@ fi
|
||||
|
||||
ret=0
|
||||
for tst in $tests; do
|
||||
echo "running $tst"
|
||||
echo -n "Running $tst... "
|
||||
|
||||
# Make sure that only one info.nut is present for each test run. Otherwise openttd gets confused.
|
||||
cp ai/regression/regression_info.nut $tst/info.nut
|
||||
@ -47,26 +47,19 @@ for tst in $tests; do
|
||||
fi
|
||||
|
||||
if [ -z "$gdb" ]; then
|
||||
# Ugly newline insertion, but it says /bin/sh above ...
|
||||
res="$res
|
||||
`diff -ub $tst/result.txt tmp.regression`"
|
||||
res="`diff -ub $tst/result.txt tmp.regression`"
|
||||
if [ -z "$res" ]; then
|
||||
echo "passed!"
|
||||
else
|
||||
echo "failed! Difference:"
|
||||
echo "$res"
|
||||
ret=1
|
||||
fi
|
||||
fi
|
||||
|
||||
rm $tst/info.nut
|
||||
done
|
||||
|
||||
if [ -z "$gdb" ]; then
|
||||
if [ -z "$res" ]; then
|
||||
echo "Regression test passed!"
|
||||
else
|
||||
echo "Regression test failed! Difference:"
|
||||
echo "$res"
|
||||
ret=1
|
||||
fi
|
||||
echo ""
|
||||
echo "Regression test done"
|
||||
fi
|
||||
|
||||
if [ -f scripts/game_start.scr.regression ]; then
|
||||
mv scripts/game_start.scr.regression scripts/game_start.scr
|
||||
fi
|
||||
|
Loading…
Reference in New Issue
Block a user