summaryrefslogtreecommitdiff
path: root/tests/000-cat
blob: 1b075494ec15ac3622eb6f543f4d551da9be8a06 (plain)
1
2
3
4
5
6
7
8
#!/bin/sh
#
# Check that data can be just passed straight through.

VALUE=`echo TESTING | $PROG 2>/dev/null` || exit 1
test "$VALUE" = "TESTING"

# EOF