Skip to content

Commit

Permalink
Merge pull request #2764 from vaishnavibhat/dmesg_level
Browse files Browse the repository at this point in the history
dmesg error level check for lpm test
  • Loading branch information
Naresh-ibm committed Feb 26, 2024
2 parents 221ef39 + b1aefaa commit f9427aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion io/net/virt-net/lpm.py
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ def check_dmesg_error(self):
error = ['uevent: failed to send synthetic uevent', 'failed to send uevent', 'registration failed']
self.log.info("Gathering kernel errors if any")
try:
dmesg.collect_errors_by_level(skip_errors=error)
dmesg.collect_errors_by_level(level_check=4, skip_errors=error)
except Exception as exc:
self.log.info(exc)
self.fail("test failed,check dmesg log in debug log")
Expand Down

0 comments on commit f9427aa

Please sign in to comment.