mirror of
https://github.com/agherzan/meta-raspberrypi.git
synced 2025-12-05 22:19:11 +00:00
13 lines
353 B
Python
13 lines
353 B
Python
from oeqa.runtime.cases.parselogs import *
|
|
|
|
rpi_errors = [
|
|
]
|
|
|
|
ignore_errors['raspberrypi4'] = rpi_errors + common_errors
|
|
ignore_errors['raspberrypi4-64'] = rpi_errors + common_errors
|
|
ignore_errors['raspberrypi3'] = rpi_errors + common_errors
|
|
ignore_errors['raspberrypi3-64'] = rpi_errors + common_errors
|
|
|
|
class ParseLogsTestRpi(ParseLogsTest):
|
|
pass
|