mirror of
https://git.yoctoproject.org/poky
synced 2026-07-26 19:17:07 +00:00
oeqa/runtime/cases: Improve dependencies of kernel/gcc/build tests
Mark up these tests as needing a compiler, make and kernel source code as appropriate, the image feature requirements can then be retired. (From OE-Core rev: 9f64e6c25abdf494fb511e9cd401f8dcaa08be2a) (From OE-Core rev: 544c56b6950f0598d5eaf62d9ae9d9de5fcb7eaf) 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>
This commit is contained in:
@@ -9,13 +9,13 @@ from oeqa.runtime.decorator.package import OEHasPackage
|
||||
class StapTest(OERuntimeTestCase):
|
||||
|
||||
@classmethod
|
||||
def setUpClass(cls):
|
||||
def setUp(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):
|
||||
def tearDown(cls):
|
||||
files = '/tmp/hello.stp'
|
||||
cls.tc.target.run('rm %s' % files)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user