blob: 33a9b6f3c8e993d4387d622bf4860b099fa726a6 (
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"
echo
echo "--- 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
echo -n "--- Finished coreserver tests "
}
|