mirror of
https://github.com/Dushistov/sdcv.git
synced 2025-12-16 18:01:54 +00:00
13 lines
168 B
Bash
Executable File
13 lines
168 B
Bash
Executable File
#!/bin/sh
|
|
|
|
../src/sdcv -n >/dev/null 2>&1 &
|
|
PID=$!
|
|
sleep 1
|
|
|
|
if kill -0 $PID >/dev/null 2>&1 ; then
|
|
echo "process wait input: $PID, test failed" >&2
|
|
exit 1
|
|
fi
|
|
|
|
exit 0
|