mirror of
https://github.com/microsoft/onefuzz.git
synced 2025-06-15 03:18:07 +00:00
ignore benign error messages when checking integration test logs (#775)
This commit is contained in:
@ -777,6 +777,22 @@ class TestOnefuzz:
|
|||||||
):
|
):
|
||||||
continue
|
continue
|
||||||
|
|
||||||
|
# ignore analyzer output, as we can't control what applications
|
||||||
|
# being fuzzed send to stdout or stderr. (most importantly, cdb
|
||||||
|
# prints "Symbol Loading Error Summary")
|
||||||
|
if message.startswith("process (stdout) analyzer:") or message.startswith(
|
||||||
|
"process (stderr) analyzer:"
|
||||||
|
):
|
||||||
|
continue
|
||||||
|
|
||||||
|
# TODO: ignore queue errors until tasks are shut down before
|
||||||
|
# deleting queues https://github.com/microsoft/onefuzz/issues/141
|
||||||
|
if (
|
||||||
|
"storage queue pop failed" in message
|
||||||
|
or "storage queue delete failed" in message
|
||||||
|
) and entry.get("sdkVersion") == "rust:0.1.5":
|
||||||
|
continue
|
||||||
|
|
||||||
if message is None:
|
if message is None:
|
||||||
self.logger.error("error log: %s", entry)
|
self.logger.error("error log: %s", entry)
|
||||||
else:
|
else:
|
||||||
|
Reference in New Issue
Block a user