mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-03 20:01:16 +00:00
18 lines
315 B
Bash
18 lines
315 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
tmpfiles=
|
||
|
trap 'rm -fr $tmpfiles' 1 2 3 15
|
||
|
|
||
|
tmpfiles=t-lseek.tmp
|
||
|
# seekable files
|
||
|
./test-lseek${EXEEXT} 0 < "$srcdir/test-lseek.sh" > t-lseek.tmp || exit 1
|
||
|
|
||
|
# pipes
|
||
|
echo hi | ./test-lseek${EXEEXT} 1 | cat || exit 1
|
||
|
|
||
|
# closed descriptors
|
||
|
./test-lseek${EXEEXT} 2 <&- >&- || exit 1
|
||
|
|
||
|
rm -rf $tmpfiles
|
||
|
exit 0
|