blob: a0e28d14d467bddd5c347bc9927e5eefd42ad965 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# Standalone coreserver tests
sh_test()
{
local interpreter="$1"
cd "$rootdir" || die "Failed to change to rootdir '$rootdir'"
# Quick test to awlsim-server
"$interpreter" ./awlsim-server -h >/dev/null ||\
test_failed "Call to awlsim-server -h failed"
}
|