diff options
Diffstat (limited to 'tests/read2.sub')
-rw-r--r-- | tests/read2.sub | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/tests/read2.sub b/tests/read2.sub index 176cf86..c4a1f77 100644 --- a/tests/read2.sub +++ b/tests/read2.sub @@ -1,12 +1,22 @@ a=4 read -t 2 a < /dev/tty -echo $? +estat=$? +if [ $estat -gt 128 ]; then + echo timeout 1: ok +else + echo $estat +fi echo $a sleep 5 | read -t 1 a -echo $? +estat=$? +if [ $estat -gt 128 ]; then + echo timeout 2: ok +else + echo $estat +fi echo $a |