mirror of
git://git.yoctoproject.org/meta-raspberrypi.git
synced 2025-07-05 13:14:45 +02: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
|