diff options
author | Ross Burton <ross.burton@intel.com> | 2015-07-24 11:47:51 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-11-16 11:39:30 +0000 |
commit | 2d1071edb1233eb836059e8205bae19582068a88 (patch) | |
tree | 818c913f8fb3db18029c83e0956151bae9f1d2a9 /meta/lib/oeqa/runtime | |
parent | 42a5378647bc43c966594b766270059ce32637eb (diff) | |
download | poky-2d1071edb1233eb836059e8205bae19582068a88.tar.gz |
oeqa/runtime: remove dmesg test
This has been obsoleted by parselogs.
(From OE-Core rev: 05132fd236835db71d3e763b4d6ce01fcf14741a)
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa/runtime')
-rw-r--r-- | meta/lib/oeqa/runtime/dmesg.py | 12 |
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 @@ | |||
1 | import unittest | ||
2 | from oeqa.oetest import oeRuntimeTest | ||
3 | from oeqa.utils.decorators import * | ||
4 | |||
5 | |||
6 | class DmesgTest(oeRuntimeTest): | ||
7 | |||
8 | @testcase(215) | ||
9 | @skipUnlessPassed('test_ssh') | ||
10 | def test_dmesg(self): | ||
11 | (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') | ||
12 | self.assertEqual(status, 1, msg = "Error messages in dmesg log: %s" % output) | ||