diff mbox series

[meta-lts-mixins,scarthgap/go,6/7] readme: add go-ptest to testing

Message ID 20260513170902.2468061-6-peter.marko@siemens.com
State New
Headers show
Series [meta-lts-mixins,scarthgap/go,1/7] go-helloworld: upgrade to latest revision | expand

Commit Message

Peter Marko May 13, 2026, 5:09 p.m. UTC
From: Peter Marko <peter.marko@siemens.com>

Ptest support was added for go recipe, so add it to acceptance tests.

Switch to core-image-ptest-go, which automatically installs go-ptest.
It installs openssh, so dropbear would conflict with it.
TEST_SUITES are alreary se there, so just append go, not overwrite.
QB_MEM is set there already to 4096, so drop our setting which would
cause a decrease and thus break it.

Signed-off-by: Peter Marko <peter.marko@siemens.com>
---
 README.md | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)
diff mbox series

Patch

diff --git a/README.md b/README.md
index 080cbfe..28d43f0 100644
--- a/README.md
+++ b/README.md
@@ -54,14 +54,13 @@  Automated tests to verify go toolchain functionality are being executed with fol
 * OEQA runtime
 
     ```
-    IMAGE_INSTALL:append = " packagegroup-core-ssh-dropbear go-helloworld packagegroup-go-sdk-target"
+    IMAGE_INSTALL:append = " go-helloworld packagegroup-go-sdk-target"
     IMAGE_CLASSES += "testimage"
-    TEST_SUITES = "ping ssh go"
-    QB_MEM = "-m 2048"
+    TEST_SUITES:append = " go"
     ```
 
     ```
-    bitbake core-image-minimal && bitbake core-image-minimal:do_testimage
+    bitbake core-image-ptest-go && bitbake core-image-ptest-go:do_testimage
     ```
 
 * OEQA SDK