summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/runtime/xorg.py
diff options
context:
space:
mode:
Diffstat (limited to 'meta/lib/oeqa/runtime/xorg.py')
-rw-r--r--meta/lib/oeqa/runtime/xorg.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/meta/lib/oeqa/runtime/xorg.py b/meta/lib/oeqa/runtime/xorg.py
index a07031e5c8..12bcd371af 100644
--- a/meta/lib/oeqa/runtime/xorg.py
+++ b/meta/lib/oeqa/runtime/xorg.py
@@ -9,9 +9,8 @@ def setUpModule():
9 9
10class XorgTest(oeRuntimeTest): 10class XorgTest(oeRuntimeTest):
11 11
12 @testcase(1151)
12 @skipUnlessPassed('test_ssh') 13 @skipUnlessPassed('test_ssh')
13 def test_xorg_running(self): 14 def test_xorg_running(self):
14 (status, output) = self.target.run(oeRuntimeTest.pscmd + ' | grep -v xinit | grep [X]org') 15 (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]) 16 self.assertEqual(status, 0, msg="Xorg does not appear to be running %s" % self.target.run(oeRuntimeTest.pscmd)[1])
16
17