Skip to content

Commit

Permalink
added filter for benign mellanox warning on freebsd (#3500)
Browse files Browse the repository at this point in the history
* added filter for benign mellanox warning on freebsd
  • Loading branch information
r-dailey authored Nov 8, 2024
1 parent 1c0ca1e commit b3e1f46
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions microsoft/testsuites/core/azure_image_standard.py
Original file line number Diff line number Diff line change
Expand Up @@ -243,6 +243,11 @@ class AzureImageStandard(TestSuite):
),
# pam_unix,pam_faillock
re.compile(r"^(.*pam_unix,pam_faillock.*)$", re.M),
# hamless mellanox warning that does not affect functionality of the system
re.compile(
r"^(.*mlx5_core0: WARN: mlx5_fwdump_prep:92:\(pid 0\).*)$",
re.M,
),
]

@TestCaseMetadata(
Expand Down

0 comments on commit b3e1f46

Please sign in to comment.