From 9f64e6c25abdf494fb511e9cd401f8dcaa08be2a Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Fri, 9 Nov 2018 09:55:40 +0000 Subject: 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. Signed-off-by: Richard Purdie --- meta/lib/oeqa/runtime/cases/stap.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'meta/lib/oeqa/runtime/cases/stap.py') diff --git a/meta/lib/oeqa/runtime/cases/stap.py b/meta/lib/oeqa/runtime/cases/stap.py index 747c1d9517..c492caffd6 100644 --- a/meta/lib/oeqa/runtime/cases/stap.py +++ b/meta/lib/oeqa/runtime/cases/stap.py @@ -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) -- cgit 1.2.3-korg