summaryrefslogtreecommitdiff
path: root/tests/test-lseek.sh
blob: ff553c93b29e51d784714644c47f7461ec54178f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/sh

tmpfiles=
trap 'rm -fr $tmpfiles' HUP INT QUIT TERM

tmpfiles=t-lseek.tmp
# seekable files
${CHECKER} ./test-lseek${EXEEXT} 0 < "$srcdir/test-lseek.sh" > t-lseek.tmp || exit 1

# pipes
echo hi | { ${CHECKER} ./test-lseek${EXEEXT} 1; echo $? > t-lseek.tmp; cat > /dev/null; } | cat
test "`cat t-lseek.tmp`" = "0" || exit 1

# closed descriptors
${CHECKER} ./test-lseek${EXEEXT} 2 <&- >&- || exit 1

rm -rf $tmpfiles
exit 0