1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-06-01 21:06:04 +02:00

34774: fix %prep and use read from a no-op pipe to force wait for the timeout

This commit is contained in:
Barton E. Schaefer 2015-03-25 09:57:23 -07:00
parent 13bad92fd8
commit 158484941a
3 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2015-03-25 Barton E. Schaefer <schaefer@zsh.org>
* 34774: Test/W01history.ztst, Test/comptest: fix %prep and use
read from a no-op pipe to force wait for the timeout
2015-03-23 Barton E. Schaefer <schaefer@zsh.org>
* 34772: Test/W01history.ztst, Test/comptest: add new test

View File

@ -2,7 +2,7 @@
%prep
[[ -t 0 ]] && print -u $ZTST_fd History tests write to /dev/tty
if [[ -t 0 ]]; then print -u $ZTST_fd History tests write to /dev/tty; fi
%test

View File

@ -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'