A simple 'which' call doesn't need the timeout disabling. This was likely a copy and paste error and can be removed.
Signed-off-by: Richard Purdie <[email protected]> --- meta/lib/oeqa/runtime/cases/ptest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/lib/oeqa/runtime/cases/ptest.py b/meta/lib/oeqa/runtime/cases/ptest.py index 1a0782374d0..2887e136719 100644 --- a/meta/lib/oeqa/runtime/cases/ptest.py +++ b/meta/lib/oeqa/runtime/cases/ptest.py @@ -35,7 +35,7 @@ class PtestRunnerTest(OERuntimeTestCase): self.do_ptestrunner() def do_ptestrunner(self): - status, output = self.target.run('which ptest-runner', 0) + status, output = self.target.run('which ptest-runner') if status != 0: self.skipTest("No -ptest packages are installed in the image")
-=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#232434): https://lists.openembedded.org/g/openembedded-core/message/232434 Mute This Topic: https://lists.openembedded.org/mt/118138139/21656 Group Owner: [email protected] Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
