diff options
author | Armin Kuster <akuster808@gmail.com> | 2022-06-09 21:01:41 -0700 |
---|---|---|
committer | Armin Kuster <akuster808@gmail.com> | 2022-06-18 06:48:22 -0700 |
commit | 72ba0a4a14f0984d72c9b70a6650690426947803 (patch) | |
tree | 955718607032014b538cbdc64f63c7d1ffb29269 | |
parent | ed2535a84ff7e9cc040fb82834ef1aef7a731dcb (diff) | |
download | meta-security-72ba0a4a14f0984d72c9b70a6650690426947803.tar.gz |
oeqa: fix checksec runtime test
Signed-off-by: Armin Kuster <akuster808@gmail.com>
-rw-r--r-- | lib/oeqa/runtime/cases/checksec.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/oeqa/runtime/cases/checksec.py b/lib/oeqa/runtime/cases/checksec.py index e46744c..53e6c1d 100644 --- a/lib/oeqa/runtime/cases/checksec.py +++ b/lib/oeqa/runtime/cases/checksec.py | |||
@@ -19,7 +19,7 @@ class CheckSecTest(OERuntimeTestCase): | |||
19 | 19 | ||
20 | @OETestDepends(['checksec.CheckSecTest.test_checksec_help']) | 20 | @OETestDepends(['checksec.CheckSecTest.test_checksec_help']) |
21 | def test_checksec_xml(self): | 21 | def test_checksec_xml(self): |
22 | status, output = self.target.run('checksec --format xml --proc-all') | 22 | status, output = self.target.run('checksec --format=xml --proc=1') |
23 | msg = ('checksec xml failed. Output: %s' % output) | 23 | msg = ('checksec xml failed. Output: %s' % output) |
24 | self.assertEqual(status, 0, msg = msg) | 24 | self.assertEqual(status, 0, msg = msg) |
25 | 25 | ||