blob: a268f26880726c180fd5171a8cbb91ff5923f061 [file] [log] [blame]
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001from oeqa.runtime.case import OERuntimeTestCase
2from oeqa.core.decorator.depends import OETestDepends
3from oeqa.runtime.decorator.package import OEHasPackage
4
5import threading
6import time
7
8class TerminalTest(OERuntimeTestCase):
9
10 @OEHasPackage(['matchbox-terminal'])
11 @OETestDepends(['ssh.SSHTest.test_ssh'])
12 def test_terminal_running(self):
13 t_thread = threading.Thread(target=self.target.run, args=('export DISPLAY=:0 && matchbox-terminal',))
14 t_thread.start()
15 time.sleep(2)
16 status, output = self.target.run('pidof matchbox-terminal')
17 self.target.run('kill -9 %s' % output)
18 self.assertEqual(status, 0, msg='Not able to find process that runs terminal.')