From: Richard Purdie Date: Wed, 4 Mar 2026 18:39:25 +0000 (+0000) Subject: oeqa/runtime/ptest: Use a timeout with command, remove disabling X-Git-Tag: uninative-5.1~119 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=af2a0a57bceb60ba569a6a282f9705845a3b2c1c;p=thirdparty%2Fopenembedded%2Fopenembedded-core.git oeqa/runtime/ptest: Use a timeout with command, remove disabling 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 --- diff --git a/meta/lib/oeqa/runtime/cases/ptest.py b/meta/lib/oeqa/runtime/cases/ptest.py index 1a0782374d..2887e13671 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")