Skip to content

Commit

Permalink
PR check fix
Browse files Browse the repository at this point in the history
  • Loading branch information
bhagyapathak committed Feb 5, 2025
1 parent 18e7bc3 commit eb8afbe
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions microsoft/testsuites/core/azure_image_standard.py
Original file line number Diff line number Diff line change
Expand Up @@ -257,14 +257,14 @@ class AzureImageStandard(TestSuite):
# Buffer I/O error on dev sr0, logical block 1, async page read
re.compile(
r"^(.*Buffer I/O error on dev sr0, logical block 1, async page read\r)$",
re.M
re.M,
),
# I/O error,dev sr0,sector 8 op 0x0:(READ) flags 0x80700 phys_seg 1 prio class 2
# I/O error,dev sr0,sector 8 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 2
re.compile(
r"^(.* I/O error, dev sr0, sector 8 op 0x0:\(READ\) flags 0x[0-9a-fA-F]"
r" phys_seg 1 prio class 2\r)$",
re.M
r"^(.* I/O error, dev sr0, sector 8 op 0x0:\(READ\) flags 0x[0-9a-fA-F]"
r" phys_seg 1 prio class 2\r)$",
re.M,
),
# 2025-01-16T08:51:16.449922+00:00 azurelinux kernel: audit: type=1103
# audit(1737017476.442:257): pid=1296 uid=0 auid=4294967295 ses=4294967295
Expand Down

0 comments on commit eb8afbe

Please sign in to comment.