diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-08-29 09:55:28 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-08-29 23:44:37 +0100 |
commit | 91375aff9972781c8b5f029bd7c747ed5c250909 (patch) | |
tree | 914bf0dea94ba2516aa078e9c90a209d882df8ad /meta/lib | |
parent | e50ebcc5020f4bc2fc807076d65f79748de7c08d (diff) | |
download | poky-91375aff9972781c8b5f029bd7c747ed5c250909.tar.gz |
oeqa: xorg log test is being replaced by parselogs so remove
Now we have the parselogs test, this one can be removed.
(From OE-Core rev: 7977a3c28677d9a248059b0be230f345227e798a)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib')
-rw-r--r-- | meta/lib/oeqa/runtime/xorg.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/meta/lib/oeqa/runtime/xorg.py b/meta/lib/oeqa/runtime/xorg.py index 7aa61ad6ab..a07031e5c8 100644 --- a/meta/lib/oeqa/runtime/xorg.py +++ b/meta/lib/oeqa/runtime/xorg.py | |||
@@ -14,9 +14,4 @@ class XorgTest(oeRuntimeTest): | |||
14 | (status, output) = self.target.run(oeRuntimeTest.pscmd + ' | grep -v xinit | grep [X]org') | 14 | (status, output) = self.target.run(oeRuntimeTest.pscmd + ' | grep -v xinit | grep [X]org') |
15 | self.assertEqual(status, 0, msg="Xorg does not appear to be running %s" % self.target.run(oeRuntimeTest.pscmd)[1]) | 15 | self.assertEqual(status, 0, msg="Xorg does not appear to be running %s" % self.target.run(oeRuntimeTest.pscmd)[1]) |
16 | 16 | ||
17 | @testcase(972) | ||
18 | @skipUnlessPassed('test_ssh') | ||
19 | def test_xorg_error(self): | ||
20 | (status, output) = self.target.run('cat /var/log/Xorg.0.log | grep -v "(EE) error," | grep -v "PreInit" | grep -v "evdev:" | grep -v "glx" | grep "(EE)"') | ||
21 | self.assertEqual(status, 1, msg="Errors in Xorg log: %s" % output) | ||
22 | 17 | ||