aboutsummaryrefslogtreecommitdiff
path: root/tests/aux/in.test
diff options
context:
space:
mode:
Diffstat (limited to 'tests/aux/in.test')
-rwxr-xr-xtests/aux/in.test22
1 files changed, 22 insertions, 0 deletions
diff --git a/tests/aux/in.test b/tests/aux/in.test
new file mode 100755
index 0000000..4a98763
--- /dev/null
+++ b/tests/aux/in.test
@@ -0,0 +1,22 @@
+#! /bin/sh
+
+FILE=${1:?}
+IFS='
+'
+while read COMMAND ARG
+do
+ echo $COMMAND $ARG >> $FILE
+ case $COMMAND in
+ stop) if [ -n "$STOPCMD" ]; then
+ echo "STOP"
+ $STOPCMD
+ else
+ echo "OK $COMMAND $ARG"
+ fi
+ ;;
+ quit) exit $ARG;;
+ *) echo "OK $COMMAND $ARG"
+ ;;
+ esac
+done
+

Return to:

Send suggestions and report system problems to the System administrator.