summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/lib/oeqa/runtime/dmesg.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/runtime/dmesg.py b/meta/lib/oeqa/runtime/dmesg.py
index b0e2175bec..48370fbb0c 100644
--- a/meta/lib/oeqa/runtime/dmesg.py
+++ b/meta/lib/oeqa/runtime/dmesg.py
@@ -9,5 +9,5 @@ class DmesgTest(oeRuntimeTest):
9 9
10 @skipUnlessPassed('test_ssh') 10 @skipUnlessPassed('test_ssh')
11 def test_dmesg(self): 11 def test_dmesg(self):
12 (status, output) = self.target.run('dmesg | grep -v mmci-pl18x | grep -i error') 12 (status, output) = self.target.run('dmesg | grep -v mmci-pl18x | grep -v "error changing net interface name" | grep -i error')
13 self.assertEqual(status, 1, msg = "Error messages in dmesg log: %s" % output) 13 self.assertEqual(status, 1, msg = "Error messages in dmesg log: %s" % output)