mirror of
https://libwebsockets.org/repo/libwebsockets
synced 2024-11-23 17:37:33 +00:00
21 lines
562 B
Bash
Executable File
21 lines
562 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# $SAI_INSTANCE_IDX - which instance of sai, 0+
|
|
# $1 - background fixture name, unique within test space, like "multipostlocalserver"
|
|
# $2 - executable
|
|
# $3+ - args
|
|
|
|
J=`basename $2`.$1.$SAI_INSTANCE_IDX
|
|
$2 $3 $4 $5 $6 $7 $8 $9 2>/tmp/ctest-background-$J 1>/dev/null 0</dev/null &
|
|
echo $! > /tmp/sai-ctest-$J
|
|
# really we want to loop until the listen port is up
|
|
# on, eg, rpi it can be blocked at sd card and slow to start
|
|
# due to parallel tests and disc cache flush
|
|
if [ ! -z "`echo $2 | grep valgrind`" ] ; then
|
|
sleep 5
|
|
else
|
|
sleep 1
|
|
fi
|
|
exit 0
|
|
|