0.4.2 release

This commit is contained in:
Evgeniy Dushistov
2007-08-14 18:18:20 +00:00
commit 3f241bb6bb
118 changed files with 29884 additions and 0 deletions

12
tests/t_interactive Executable file
View File

@@ -0,0 +1,12 @@
#!/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