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
Auto merge of #8615 - davepacheco:sigquit-typo, r=ehuss
Fix typo in SIGQUIT description
This PR fixes a small typo in the SIGQUIT description.
(edit: removed my notes about automated tests because the PR bot has a more complete summary.)
In terms of manual testing: I had a test that raised `SIGQUIT` using the "coredump" crate. Previously, it emitted:
```
error: test failed, to rerun pass '--test the_test'
Caused by:
process didn't exit successfully: `/Users/dap/oxide/experiments/rust-coredump/target/debug/deps/the_test-a8a068307be90649 --nocapture` (signal: 3, SIGQUIT: terminal quite signal)
```
Now, it emits:
```
error: test failed, to rerun pass '--test the_test'
Caused by:
process didn't exit successfully: `/Users/dap/oxide/experiments/rust-coredump/target/debug/deps/the_test-20c8e90133861ece --nocapture` (signal: 3, SIGQUIT: terminal quit signal)
```
which looks correct.
0 commit comments