]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core-contrib.git/commitdiff
oeqa: runtime: stap: Increasing timeout to 1200 seconds
authorMathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Thu, 16 Oct 2025 14:24:11 +0000 (16:24 +0200)
committerMathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Sat, 1 Nov 2025 14:38:12 +0000 (15:38 +0100)
We have seen a lot of failures because of timeouts lastly: try to
increase it a bit.

Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
meta/lib/oeqa/runtime/cases/stap.py

index d83cb0b2b8206f8327cdb95c0ff82a92fee78ef9..8d126f2dfa495016d4bb8b1e8ef78b96a20869e0 100644 (file)
@@ -22,11 +22,11 @@ class StapTest(OERuntimeTestCase):
 
         try:
             cmd = 'make %s -C /usr/src/kernel scripts prepare' % (parallel_make)
-            status, output = self.target.run(cmd, 900)
+            status, output = self.target.run(cmd, 1800)
             self.assertEqual(status, 0, msg='\n'.join([cmd, output]))
 
             cmd = 'stap -v -p4 -m stap_hello --disable-cache -DSTP_NO_VERREL_CHECK -e \'probe oneshot { print("Hello, "); println("SystemTap!") }\''
-            status, output = self.target.run(cmd, 900)
+            status, output = self.target.run(cmd, 1800)
             self.assertEqual(status, 0, msg='\n'.join([cmd, output]))
 
             cmd = 'staprun -v -R -b1 stap_hello.ko'