Validate EIDs by default during python autotests

Fail test if the EIDs are not valid
This commit is contained in:
Jake Turner
2026-05-29 10:36:58 +01:00
parent 4a5e5e999e
commit 0f3d7965e3
+3
View File
@@ -547,6 +547,9 @@ class TestCase:
self.controller = analyse.open_capture(self.capture_filename, opts=self.get_replay_options())
self.sdfile = self.controller.GetStructuredFile()
if not self.validate_eventids(self.controller):
raise TestFailureException("ERROR: capture doesn't have valid event IDs.")
log.print("Checking capture")
self.check_capture()