aboutsummaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/runtime/dmesg.py
diff options
context:
space:
mode:
Diffstat (limited to 'meta/lib/oeqa/runtime/dmesg.py')
-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):
@skipUnlessPassed('test_ssh')
def test_dmesg(self):
- (status, output) = self.target.run('dmesg | grep -v mmci-pl18x | grep -i error')
+ (status, output) = self.target.run('dmesg | grep -v mmci-pl18x | grep -v "error changing net interface name" | grep -i error')
self.assertEqual(status, 1, msg = "Error messages in dmesg log: %s" % output)