update ini files so tests will pass again

This commit is contained in:
Enno Rehling 2014-07-23 16:01:56 +02:00
parent 44327d91f6
commit 67cf73d42c
4 changed files with 6 additions and 6 deletions

View File

@ -8,7 +8,7 @@ memcheck = 0
locales = de,en
[config]
game = eressea
rules = eressea
source_dir = ..
maxnmrs = 10

View File

@ -8,7 +8,7 @@ memcheck = 0
locales = de,en
[config]
game = e3a
rules = e3a
source_dir = ..
maxnmrs = 20

View File

@ -18,5 +18,5 @@ fi
$ROOT/$BIN_DIR/eressea/test_eressea
cd $ROOT
$ROOT/$BIN_DIR/eressea/eressea -v0 scripts/runtests.lua
grep ERROR eressea.log
#grep ERROR eressea.log
cd $OLDWPD

View File

@ -137,9 +137,9 @@ function test_ship_capacity()
process_orders()
-- print(s.region, u.region, r2)
assert_equal(r2.id, u1.region.id, "boat with 5 humans did not move")
assert_not_equal(r2.id, u2.region.id, "boat with too many people has moved")
assert_not_equal(r2.id, u4.region.id, "boat with too much cargo has moved")
assert_equal(r2, u1.region, "boat with 5 humans did not move")
assert_not_equal(r2, u2.region, "boat with too many people has moved")
assert_not_equal(r2, u4.region, "boat with too much cargo has moved")
end
function test_levitate()