Try to fix the Travis test failures

It seems expect prioritizes the first pattern in the list, instead of
the pattern that matches earliest in the buffer. That seems pretty
stupid, but let's try moving the prompt pattern to the end and see if
that fixes the Travis failures.
This commit is contained in:
Kevin Ballard 2014-09-23 23:20:02 -07:00
parent 1563501868
commit c4a453fb22

View file

@ -143,7 +143,7 @@ proc expect_prompt {args} {
} else { } else {
log_info "expecting prompt $prompt_counter" log_info "expecting prompt $prompt_counter"
} }
set expargs [concat $prompt_pat [list $prompt_action] $expargs] set expargs [concat $expargs $prompt_pat [list $prompt_action]]
expect {*}$expargs expect {*}$expargs
incr prompt_counter incr prompt_counter
} }