mirror of
https://git.yoctoproject.org/poky
synced 2026-02-28 04:19:40 +01:00
Add the OEHasPackage decorator to a variety of tests so they determine automatically if they should run against a given image. To ensure tests can do this we need to move target operations such as scp commands into the tests and out of the class startup/teardown. (From OE-Core rev: 60d6580b85714b8960a964e775d76a7f937f5e5a) (From OE-Core rev: 03b7658369bb7c1c8fbbaac7d9e281617cc16135) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Armin Kuster <akuster808@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
36 lines
1.3 KiB
Python
36 lines
1.3 KiB
Python
import os
|
|
|
|
from oeqa.runtime.case import OERuntimeTestCase
|
|
from oeqa.core.decorator.depends import OETestDepends
|
|
from oeqa.core.decorator.oeid import OETestID
|
|
from oeqa.core.decorator.data import skipIfNotFeature
|
|
from oeqa.runtime.decorator.package import OEHasPackage
|
|
|
|
class StapTest(OERuntimeTestCase):
|
|
|
|
@classmethod
|
|
def setUpClass(cls):
|
|
src = os.path.join(cls.tc.runtime_files_dir, 'hello.stp')
|
|
dst = '/tmp/hello.stp'
|
|
cls.tc.target.copyTo(src, dst)
|
|
|
|
@classmethod
|
|
def tearDownClass(cls):
|
|
files = '/tmp/hello.stp'
|
|
cls.tc.target.run('rm %s' % files)
|
|
|
|
@OETestID(1652)
|
|
@skipIfNotFeature('tools-profile',
|
|
'Test requires tools-profile to be in IMAGE_FEATURES')
|
|
@OETestDepends(['kernelmodule.KernelModuleTest.test_kernel_module'])
|
|
@OEHasPackage(['systemtap'])
|
|
def test_stap(self):
|
|
cmds = [
|
|
'cd /usr/src/kernel && make scripts prepare',
|
|
'cd /lib/modules/`uname -r` && (if [ ! -L build ]; then ln -s /usr/src/kernel build; fi)',
|
|
'stap --disable-cache -DSTP_NO_VERREL_CHECK /tmp/hello.stp'
|
|
]
|
|
for cmd in cmds:
|
|
status, output = self.target.run(cmd, 900)
|
|
self.assertEqual(status, 0, msg='\n'.join([cmd, output]))
|