diff options
author | Barton E. Schaefer <schaefer@zsh.org> | 2015-03-25 09:57:23 -0700 |
---|---|---|
committer | Barton E. Schaefer <schaefer@zsh.org> | 2015-03-25 09:57:23 -0700 |
commit | 158484941ac1ff20ce93e4aff46fef6cd22dbf91 (patch) | |
tree | b2e55fe411ce0d1ee74b1f26d2e7f761669b840b /Test/comptest | |
parent | 13bad92fd85c4e4a3077080606f6ad6217b29bd5 (diff) | |
download | zsh-158484941ac1ff20ce93e4aff46fef6cd22dbf91.tar.gz zsh-158484941ac1ff20ce93e4aff46fef6cd22dbf91.tar.xz zsh-158484941ac1ff20ce93e4aff46fef6cd22dbf91.zip |
34774: fix %prep and use read from a no-op pipe to force wait for the timeout
Diffstat (limited to 'Test/comptest')
-rw-r--r-- | Test/comptest | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Test/comptest b/Test/comptest index ef8421755..20a3a5b1d 100644 --- a/Test/comptest +++ b/Test/comptest @@ -164,7 +164,7 @@ zletest () { for input; do # zpty_flush Before zletest # sleep for $KEYTIMEOUT - (( first++ )) && read -t 0.011 -u 0 -k 1 < /dev/null + (( first++ )) && { sleep 2 & } | read -t 0.011 -u 0 -k 1 zpty -n -w zsh "$input" done zpty -n -w zsh $'\C-X' |