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
I think it is possible that our signal handler set in the test can be
overwritten by integration tests (under dir 'test'), which means the
`SIGNALED` variable would never be set.
We have a lock to prevent this issue in integration tests, but since this
is a doc test, we cannot employ it here.
```rust
/// Any test that alters signal handling must grab this mutex.
pub static SIGNAL_MTX: Mutex<()> = Mutex::new(());
```
So let's run tests sequentially and see if it will work.
0 commit comments