]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core-contrib.git/commitdiff
oeqa: runtime: ltp_compliance: Increase test_posix_groups timeout
authorMathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Tue, 21 Oct 2025 08:28:39 +0000 (10:28 +0200)
committerMathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Sat, 1 Nov 2025 14:38:12 +0000 (15:38 +0100)
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
meta/lib/oeqa/runtime/cases/ltp_compliance.py

index ba47c78fd46bc65b5ac7f3e81726782b03542043..04190d7ce5ebb3e58ceda9c56ca2f9ec2b750cd9 100644 (file)
@@ -62,7 +62,7 @@ class LtpPosixTest(LtpPosixBase):
     def runltp(self, posix_group):
             cmd = "/opt/ltp/bin/run-posix-option-group-test.sh %s 2>@1 | tee /opt/ltp/results/%s" % (posix_group, posix_group)
             starttime = time.time()
-            (status, output) = self.target.run(cmd)
+            (status, output) = self.target.run(cmd, 600)
             endtime = time.time()
 
             with open(os.path.join(self.ltptest_log_dir, "%s" % posix_group), 'w') as f: