summaryrefslogtreecommitdiff
path: root/tests/gnu/test-pipe.sh
blob: 323c90fb9b64cecc0f2ad6644cc3ef66b47e2b8b (plain)
1
2
3
4
5
6
7
8
#!/bin/sh

st=0
for i in 0 1 2 3 4 5 6 7 ; do
  ./test-pipe${EXEEXT} $i \
    || { echo test-pipe.sh: iteration $i failed >&2; st=1; }
done
exit $st