[meta-lts-mixins][scarthgap/go][PATCH 6/7] readme: add go-ptest to testing
Peter Marko <[email protected]>
| Newsgroups | org.yoctoproject.lists.yocto-patches |
|---|---|
| Message-ID | <[email protected]> |
From: Peter Marko <[email protected]> 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 <[email protected]> --- README.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) 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