Martin Pool

Results 203 issues of Martin Pool

There's a test that is meant to check that we kill child processes after a timeout. However it seems sometimes the child is not properly killed but instead left hanging,...

bug
testing

I have some changes in Rust source code that are incorrectly (or at least confusingly) represented in difftastic's inline view. It's omitting some unchanged context lines which tends to make...

One thing I've been using rusty-fork for is to test behavior connected to environment variables. (Thanks!) For example: ```rust rusty_fork_test! { #[test] fn resolve_auto_not_on_github() { env::remove_var("GITHUB_ACTION"); assert_eq!(AnnotationKind::Auto.resolve(), AnnotationKind::None); } #[test]...