summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/runtime/xorg.py
blob: 12bcd371af273c78c4ab753ad401cb1b3c98afa2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import unittest
from oeqa.oetest import oeRuntimeTest, skipModule
from oeqa.utils.decorators import *

def setUpModule():
    if not oeRuntimeTest.hasFeature("x11-base"):
            skipModule("target doesn't have x11 in IMAGE_FEATURES")


class XorgTest(oeRuntimeTest):

    @testcase(1151)
    @skipUnlessPassed('test_ssh')
    def test_xorg_running(self):
        (status, output) = self.target.run(oeRuntimeTest.pscmd + ' |  grep -v xinit | grep [X]org')
        self.assertEqual(status, 0, msg="Xorg does not appear to be running %s" % self.target.run(oeRuntimeTest.pscmd)[1])