summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/runtime/cases/stap.py
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2018-11-09 09:55:40 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2018-11-14 11:14:40 +0000
commitcd81cd155b59e1b75a3ce23375e66131b1bffc1e (patch)
tree216af7aa4b0fe84b40ee90899902c4f41ade0267 /meta/lib/oeqa/runtime/cases/stap.py
parent8c4ba1afdde782c4a497fa501a61af6bff53375f (diff)
downloadpoky-cd81cd155b59e1b75a3ce23375e66131b1bffc1e.tar.gz
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) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa/runtime/cases/stap.py')
-rw-r--r--meta/lib/oeqa/runtime/cases/stap.py4
1 files changed, 2 insertions, 2 deletions
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
9class StapTest(OERuntimeTestCase): 9class StapTest(OERuntimeTestCase):
10 10
11 @classmethod 11 @classmethod
12 def setUpClass(cls): 12 def setUp(cls):
13 src = os.path.join(cls.tc.runtime_files_dir, 'hello.stp') 13 src = os.path.join(cls.tc.runtime_files_dir, 'hello.stp')
14 dst = '/tmp/hello.stp' 14 dst = '/tmp/hello.stp'
15 cls.tc.target.copyTo(src, dst) 15 cls.tc.target.copyTo(src, dst)
16 16
17 @classmethod 17 @classmethod
18 def tearDownClass(cls): 18 def tearDown(cls):
19 files = '/tmp/hello.stp' 19 files = '/tmp/hello.stp'
20 cls.tc.target.run('rm %s' % files) 20 cls.tc.target.run('rm %s' % files)
21 21