diff options
author | Oliver Kiddle <opk@zsh.org> | 2014-11-17 16:19:12 +0100 |
---|---|---|
committer | Oliver Kiddle <opk@zsh.org> | 2014-11-17 16:29:10 +0100 |
commit | c95c2ac838e04e507f8e4d9bd0ed4d966306a9b9 (patch) | |
tree | ba667cf81a36094518153e34b0ef854cfc457b0c /Test/comptest | |
parent | 25cc978a99aae07604f4c84dd2e82d3669c2c61c (diff) | |
download | zsh-c95c2ac838e04e507f8e4d9bd0ed4d966306a9b9.tar.gz zsh-c95c2ac838e04e507f8e4d9bd0ed4d966306a9b9.tar.xz zsh-c95c2ac838e04e507f8e4d9bd0ed4d966306a9b9.zip |
33699: support short delays in zle tests where we
need KEYTIMEOUT to elapse
Diffstat (limited to 'Test/comptest')
-rw-r--r-- | Test/comptest | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/Test/comptest b/Test/comptest index 96072fdcc..654c0f168 100644 --- a/Test/comptest +++ b/Test/comptest @@ -36,6 +36,7 @@ comptestinit () { 'LISTMAX=10000000 stty 38400 columns 80 rows 24 werase undef TERM=vt100 +KEYTIMEOUT=1 setopt zle autoload -U compinit compinit -u @@ -159,9 +160,14 @@ comptest () { } zletest () { - input="$*" - # zpty_flush Before zletest - zpty -n -w zsh "$input"$'\C-X' + local first=0 + for input; do + # sleep for $KEYTIMEOUT + (( first++ )) && read -t 0.011 -k 1 < /dev/null + # zpty_flush Before zletest + zpty -n -w zsh "$input" + done + zpty -n -w zsh $'\C-X' zpty -r -m zsh log "*<WIDGET><finish>*<PROMPT>*" || { print "failed to invoke finish widget." return 1 |