You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Pressing Ctrl-C once only quits the currently running test, prints a spurious FAIL message, and then continues running the next test. To quit the whole thing, I have to either press Ctrl-C lots of times, or else just hold Ctrl-C until the keyboard repeat takes over.
What I want is to be able to cancel the whole thing with a single press of Ctrl-C. Even better would be to get a correct results summary for the partial test run.
The text was updated successfully, but these errors were encountered:
The difficulty, I think, is that subshells are spawned to run each individual test. If I recall correctly, this was done so that the individual test jobs could be run with a timeout. I don't know offhand a good way to get the behavior you want, but maybe a better shell hacker than I could figure out how to do it.
Here's what usually happens when I try to abort an execution of
runtests.sh
by pressing Ctrl-C:Pressing Ctrl-C once only quits the currently running test, prints a spurious
FAIL
message, and then continues running the next test. To quit the whole thing, I have to either press Ctrl-C lots of times, or else just hold Ctrl-C until the keyboard repeat takes over.What I want is to be able to cancel the whole thing with a single press of Ctrl-C. Even better would be to get a correct results summary for the partial test run.
The text was updated successfully, but these errors were encountered: