1
1
mirror of https://github.com/wader/fq.git synced 2024-09-19 15:57:29 +03:00
fq/pkg/cli/test_cli_ctrlc.exp
Mattias Wadman 9cb4b57a45 interp,cli: Handle ctrl-c properly
Should supress cancel error message
Add CLI ctlr-c/ctrl-d tests and make them more robust
2022-03-15 22:38:12 +01:00

20 lines
305 B
Plaintext

#!/usr/bin/env expect
log_user 1
set timeout 3
expect_after {
timeout {exit 1}
}
spawn sh -c "cat | fq 2>&1"
sleep 1
# ctrl-c
send "\x03"
expect eof
# should not have outputted anything except maybe "^C", seems flakey
if { $expect_out(buffer) != "" && $expect_out(buffer) != "^C" } {
exit 1
}