]> code.ossystems Code Review - openembedded-core.git/commitdiff
oeqa/runtime/dmesg: Ignore DMA timeout errors
authorRichard Purdie <richard.purdie@linuxfoundation.org>
Sat, 1 Mar 2014 15:22:01 +0000 (15:22 +0000)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Sun, 2 Mar 2014 17:24:13 +0000 (17:24 +0000)
We see these from qemu images on servers under load. They're not interesting
and clutter the build output so lets ignore them.

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/lib/oeqa/runtime/dmesg.py

index a53d1f0bf38072a08c61bdfc6f133ad21709e9b4..64247ea704c68783169400575a46a46d0ac2503b 100644 (file)
@@ -7,5 +7,5 @@ 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 -i error')
+        (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)