summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/runtime/cases/stap.py
diff options
context:
space:
mode:
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