Skip to content

Commit

Permalink
weird regex issues
Browse files Browse the repository at this point in the history
  • Loading branch information
oli-obk committed Sep 16, 2023
1 parent 5651365 commit eadcef5
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions tests/integration.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,7 @@ fn main() -> Result<()> {

config.stdout_filter("in ([0-9]m )?[0-9\\.]+s", "");
config.stdout_filter(r#""--out-dir"(,)? "[^"]+""#, r#""--out-dir"$1 "$$TMP"#);
config.filter(
"( *process didn't exit successfully: `.*)-[0-9a-f]+`",
"$1-HASH`",
);
config.filter("-[0-9a-f]+`", "-HASH`");
// Windows io::Error uses "exit code".
config.filter("exit code", "exit status");
config.filter(
Expand Down

0 comments on commit eadcef5

Please sign in to comment.