unit tests: add --noaddons switch to the networked mp unit tests

This commit is contained in:
Chris Beck 2015-03-05 13:28:33 -05:00
parent caa1e4d64f
commit 9b78a41d25

View file

@ -6,10 +6,10 @@ set -v #Print shell commands as they are read
./wesnothd --port 12345 --log-debug=server --log-warning=config &
serverpid=$!
./wesnoth --plugin=host.lua --server=localhost:12345 --username=host --nogui --mp-test &
./wesnoth --plugin=host.lua --server=localhost:12345 --username=host --nogui --mp-test --noaddons &
hostpid=$!
./wesnoth --plugin=join.lua --server=localhost:12345 --username=join --nogui --mp-test &
./wesnoth --plugin=join.lua --server=localhost:12345 --username=join --nogui --mp-test --noaddons &
joinpid=$!
wait $hostpid