Skip to content

Commit

Permalink
More exclusions
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewlock committed Dec 19, 2024
1 parent aaaf963 commit 01c3fdc
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,8 @@ protected async Task CheckForSmoke(bool shouldDeserializeTraces = true, int expe

#if !NET5_0_OR_GREATER
if (result.StandardOutput.Contains("App completed successfully")
&& Regex.IsMatch(result.StandardError, @"open\(/proc/\d+/mem\) FAILED 2 \(No such file or directory\)"))
&& (Regex.IsMatch(result.StandardError, @"open\(/proc/\d+/mem\) FAILED 2 \(No such file or directory\)")
|| Regex.IsMatch(result.StandardError, @"ptrace\(ATTACH, \d+\) FAILED Operation not permitted")))
{
// The above message is the last thing set before we exit.
// We can still get flake on shutdown (which we can't isolate), but for some reason
Expand Down

0 comments on commit 01c3fdc

Please sign in to comment.