summaryrefslogtreecommitdiffstats
path: root/import-layers/yocto-poky/meta/lib/oeqa/runtime/case.py
diff options
context:
space:
mode:
Diffstat (limited to 'import-layers/yocto-poky/meta/lib/oeqa/runtime/case.py')
-rw-r--r--import-layers/yocto-poky/meta/lib/oeqa/runtime/case.py17
1 files changed, 0 insertions, 17 deletions
diff --git a/import-layers/yocto-poky/meta/lib/oeqa/runtime/case.py b/import-layers/yocto-poky/meta/lib/oeqa/runtime/case.py
deleted file mode 100644
index 2f190acf1..000000000
--- a/import-layers/yocto-poky/meta/lib/oeqa/runtime/case.py
+++ /dev/null
@@ -1,17 +0,0 @@
-# Copyright (C) 2016 Intel Corporation
-# Released under the MIT license (see COPYING.MIT)
-
-from oeqa.core.case import OETestCase
-from oeqa.utils.package_manager import install_package, uninstall_package
-
-class OERuntimeTestCase(OETestCase):
- # target instance set by OERuntimeTestLoader.
- target = None
-
- def setUp(self):
- super(OERuntimeTestCase, self).setUp()
- install_package(self)
-
- def tearDown(self):
- super(OERuntimeTestCase, self).tearDown()
- uninstall_package(self)
OpenPOWER on IntegriCloud