mirror of
https://git.yoctoproject.org/poky
synced 2026-02-09 02:03:04 +01:00
We see these from qemu images on servers under load. They're not interesting and clutter the build output so lets ignore them. (From OE-Core rev: 053eba4885ab4016f7efc7899ec9e02df3384d11) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 lines
431 B
Python
12 lines
431 B
Python
import unittest
|
|
from oeqa.oetest import oeRuntimeTest
|
|
from oeqa.utils.decorators import *
|
|
|
|
|
|
class DmesgTest(oeRuntimeTest):
|
|
|
|
@skipUnlessPassed('test_ssh')
|
|
def test_dmesg(self):
|
|
(status, output) = self.target.run('dmesg | grep -v mmci-pl18x | grep -v "error changing net interface name" | grep -iv "dma timeout" | grep -i error')
|
|
self.assertEqual(status, 1, msg = "Error messages in dmesg log: %s" % output)
|