mirror of
git://git.yoctoproject.org/poky.git
synced 2025-07-19 21:09:03 +02:00

This test does not work on centos7 so diable it (as was done in the original series before we thought it was working). (From OE-Core rev: c27cdf83bc2b8ff802a5c4e0b49f18174af8e34a) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
24 lines
1.1 KiB
Python
24 lines
1.1 KiB
Python
from oeqa.runtime.case import OERuntimeTestCase
|
|
from oeqa.core.decorator.depends import OETestDepends
|
|
import subprocess
|
|
import oe.lsb
|
|
|
|
class VirglTest(OERuntimeTestCase):
|
|
|
|
@OETestDepends(['ssh.SSHTest.test_ssh'])
|
|
def test_kernel_driver(self):
|
|
status, output = self.target.run('dmesg|grep virgl')
|
|
self.assertEqual(status, 0, "Checking for virgl driver in dmesg returned non-zero: %d\n%s" % (status, output))
|
|
self.assertIn("virgl 3d acceleration enabled", output, "virgl acceleration seems to be disabled:\n%s" %(output))
|
|
|
|
@OETestDepends(['virgl.VirglTest.test_kernel_driver'])
|
|
def test_kmscube(self):
|
|
|
|
distro = oe.lsb.distro_identifier()
|
|
if distro and distro == 'centos-7':
|
|
self.skipTest('kmscube is not working when centos 7 is the host OS')
|
|
|
|
status, output = self.target.run('kmscube', timeout=30)
|
|
self.assertEqual(status, 0, "kmscube exited with non-zero status %d and output:\n%s" %(status, output))
|
|
self.assertIn('renderer: "virgl"', output, "kmscube does not seem to use virgl:\n%s" %(output))
|