summaryrefslogtreecommitdiffstats
path: root/share/tests/libc-stp/stpe/008/test.sh
blob: 52043f754f9824b02182bb213398995363870800 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/env bash


set -Eefuo pipefail;
shopt -s lastpipe;


./test \
| if ! grep -q '^Truncated:$'; then
	>&2 ./test;
	exit 2;
fi;


./test \
| if ! grep -q '^16: Hello, 22 worlds$'; then
	>&2 ./test;
	exit 3;
fi;