blob: 20647fc6b607c6adc9d46f6f48b6cb1df8f7eba8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# awlsim-test with coreserver tests
sh_test()
{
local interpreter="$1"
infomsg
infomsg "--- Running coreserver tests"
cd "$rootdir" || die "Failed to change to rootdir '$rootdir'"
for testfile in 000-base/shutdown.awl; do
run_test "$interpreter" "$basedir/$testfile" \
--spawn-backend --interpreter "$interpreter" \
--connect-to localhost:$(get_port)
done
infomsg -n "--- Finished coreserver tests "
}
|