2 # Test select() on file descriptors opened for reading.
4 # This test is known to fail on Solaris 2.6 and older, due to its handling
8 trap 'rm -fr $tmpfiles' 1 2 3 15
10 tmpfiles
="$tmpfiles t-select-in.tmp"
15 .
/test-select-fd
${EXEEXT} r
0 t-select-in.tmp
< .
/test-select-fd
${EXEEXT}
16 test `cat t-select-in.tmp` = "1" ||
exit 1
21 { sleep 1; echo abc
; } | \
22 { .
/test-select-fd
${EXEEXT} r
0 t-select-in.tmp
; cat > /dev
/null
; }
23 test `cat t-select-in.tmp` = "0" ||
exit 1
26 echo abc |
{ sleep 1; .
/test-select-fd
${EXEEXT} r
0 t-select-in.tmp
; }
27 test `cat t-select-in.tmp` = "1" ||
exit 1
30 # This part of the test is known to fail on Solaris 2.6 and older.
32 # Doesn't work under mingw -- simon@josefsson.org
33 #rm -f t-select-in.tmp
34 #./test-select-fd${EXEEXT} r 0 t-select-in.tmp < /dev/null
35 #test `cat t-select-in.tmp` = "1" || exit 1