summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2022-09-16 13:14:45 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-09-17 07:45:19 +0100
commitfbdc1f307c3a73979aee288f03aa513ccd93b799 (patch)
treef3de2abfd51fd8553c212fed6c380298fe3d2dd3 /meta
parenta0892c3209e3892d79b97dcd4ec0e5a89057258c (diff)
downloadopenembedded-core-fbdc1f307c3a73979aee288f03aa513ccd93b799.tar.gz
oetest: Drop unused variable
The pscmd variable appears unused, drop it and the code which then isn't needed. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r--meta/lib/oeqa/oetest.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/meta/lib/oeqa/oetest.py b/meta/lib/oeqa/oetest.py
index 9c84466dd0..cf2cb30a3e 100644
--- a/meta/lib/oeqa/oetest.py
+++ b/meta/lib/oeqa/oetest.py
@@ -57,7 +57,6 @@ def filterByTagExp(testsuite, tagexp):
@LogResults
class oeTest(unittest.TestCase):
- pscmd = "ps"
longMessage = True
@classmethod
@@ -398,11 +397,6 @@ class RuntimeTestContext(TestContext):
def _get_test_suites_required(self):
return [t for t in self.d.getVar("TEST_SUITES").split() if t != "auto"]
- def loadTests(self):
- super(RuntimeTestContext, self).loadTests()
- if oeTest.hasPackage("procps"):
- oeRuntimeTest.pscmd = "ps -ef"
-
def extract_packages(self):
"""
Find packages that will be needed during runtime.