mirror of https://gitee.com/openkylin/libvirt.git
18 lines
315 B
Bash
Executable File
18 lines
315 B
Bash
Executable File
#!/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
|