[1/2] Revert "oeqa/runtime/stap: increase buffer size"

Message ID 20220124181156.3921311-1-ross.burton@arm.com
State New
Headers show
Series [1/2] Revert "oeqa/runtime/stap: increase buffer size" | expand

Commit Message

Ross Burton Jan. 24, 2022, 6:11 p.m. UTC
The failures appear to be OOMs during the compile phase, so the buffer
size isn't (yet) relevant.

If the buffer size is a problem, SystemTap commit 3106bc65 would be a
better fix.

This reverts commit 674fd536bc1c2308d557652ae100b1a1eee103b9.

Signed-off-by: Ross Burton <ross.burton@arm.com>
---
 meta/lib/oeqa/runtime/cases/stap.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Patch

diff --git a/meta/lib/oeqa/runtime/cases/stap.py b/meta/lib/oeqa/runtime/cases/stap.py
index 615c290ce61..ac0125edb2b 100644
--- a/meta/lib/oeqa/runtime/cases/stap.py
+++ b/meta/lib/oeqa/runtime/cases/stap.py
@@ -18,7 +18,7 @@  class StapTest(OERuntimeTestCase):
         status, output = self.target.run(cmd, 900)
         self.assertEqual(status, 0, msg='\n'.join([cmd, output]))
 
-        cmd = 'stap -v --disable-cache -DSTP_NO_VERREL_CHECK -s1 -e \'probe oneshot { print("Hello, "); println("world!") }\''
+        cmd = 'stap -v --disable-cache -DSTP_NO_VERREL_CHECK -e \'probe oneshot { print("Hello, "); println("world!") }\''
         status, output = self.target.run(cmd, 900)
         self.assertEqual(status, 0, msg='\n'.join([cmd, output]))
         self.assertIn('Hello, world!', output, msg='\n'.join([cmd, output]))