summaryrefslogtreecommitdiff
path: root/tests/009-quiet
diff options
context:
space:
mode:
Diffstat (limited to 'tests/009-quiet')
-rw-r--r--tests/009-quiet9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/009-quiet b/tests/009-quiet
new file mode 100644
index 0000000..a75da36
--- /dev/null
+++ b/tests/009-quiet
@@ -0,0 +1,9 @@
+#!/bin/sh
+#
+# Check that the -q option shuts everything up.
+
+dd if=/dev/zero bs=1000 count=5 2>/dev/null \
+| $PROG -f -q -i 0.1 -L 5000 >/dev/null 2>$TMP1
+test ! -s $TMP1
+
+# EOF