summaryrefslogtreecommitdiff
path: root/tests/009-quiet
blob: a75da3626104ad3e86b8ee8070cceaabace7e39e (plain)
1
2
3
4
5
6
7
8
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