mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-25 04:13:08 +00:00
fix race condition in fkr test
This commit is contained in:
parent
40fa0d5c83
commit
9f8d854c2a
1 changed files with 3 additions and 1 deletions
|
@ -38,7 +38,9 @@ expect -ex "char: \\c@\r\nbind \\c@ 'do something'\r\n" {
|
|||
}
|
||||
|
||||
# Does it keep running if handed control sequences in the wrong order?
|
||||
send "\x03\x04"
|
||||
send "\x03"
|
||||
sleep 0.010
|
||||
send "\x04"
|
||||
expect -ex "char: \\cD\r\n" {
|
||||
puts "invalid terminate sequence handled"
|
||||
} unmatched {
|
||||
|
|
Loading…
Reference in a new issue