aboutsummaryrefslogtreecommitdiffstats
path: root/meta/lib
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@intel.com>2015-07-24 11:47:51 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-11-16 11:28:30 +0000
commit05132fd236835db71d3e763b4d6ce01fcf14741a (patch)
tree04b756ead0678d488cbf62e3d79f8cea401a4756 /meta/lib
parent1f2ef653f5fb0b46daa17e08485468cc235cfbcc (diff)
downloadopenembedded-core-contrib-05132fd236835db71d3e763b4d6ce01fcf14741a.tar.gz
oeqa/runtime: remove dmesg test
This has been obsoleted by parselogs. Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta/lib')
-rw-r--r--meta/lib/oeqa/runtime/dmesg.py12
1 files changed, 0 insertions, 12 deletions
diff --git a/meta/lib/oeqa/runtime/dmesg.py b/meta/lib/oeqa/runtime/dmesg.py
deleted file mode 100644
index 5831471e50..0000000000
--- a/meta/lib/oeqa/runtime/dmesg.py
+++ /dev/null
@@ -1,12 +0,0 @@
-import unittest
-from oeqa.oetest import oeRuntimeTest
-from oeqa.utils.decorators import *
-
-
-class DmesgTest(oeRuntimeTest):
-
- @testcase(215)
- @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 -v usbhid | grep -i error')
- self.assertEqual(status, 1, msg = "Error messages in dmesg log: %s" % output)