Add ptest infrastructure to test the Go standard library.
- Run 'go test -short std' via run-ptest script
- Install source tree and pkg/include headers
- Create VERSION file for architecture detection
- Exclude multi-arch binary testdata to avoid QA errors
Signed-off-by: Pratik Farkase <pratik.farkase@est.tech>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
gettext \
glib-2.0 \
gnutls \
+ go \
gstreamer1.0 \
less \
libevent \
PTESTS = "${PTESTS_SLOW} ${PTESTS_FAST}"
PTEST_RUNNER_TIMEOUT:virtclass-mcextend-python3-cffi = "600"
+PTEST_RUNNER_TIMEOUT:virtclass-mcextend-go = "4800"
IMAGE_INSTALL:append = " ${MCNAME}-ptest openssh"
# python3-numpy-ptest requires a lot of extra space
IMAGE_ROOTFS_EXTRA_SPACE:virtclass-mcextend-python3-numpy = "3048576"
+# golang go-ptest requires extra space
+IMAGE_ROOTFS_EXTRA_SPACE:virtclass-mcextend-go = "1524288"
+
# ptests need more memory than standard to avoid the OOM killer
QB_MEM = "-m 1024"
QB_MEM:virtclass-mcextend-lttng-tools = "-m 4096"
QB_MEM:virtclass-mcextend-python3-cryptography = "-m 5100"
QB_MEM:virtclass-mcextend-python3-numpy = "-m 4096"
QB_MEM:virtclass-mcextend-tcl = "-m 5100"
+QB_MEM:virtclass-mcextend-go = "-m 4096"
TEST_SUITES = "ping ssh parselogs ptest"
file://0009-go-Filter-build-paths-on-staticly-linked-arches.patch \
file://0010-cmd-go-clear-GOROOT-for-func-ldShared-when-trimpath-.patch \
file://0011-cmd-link-stop-forcing-binutils-gold-dependency-on-aa.patch \
+ file://run-ptest \
"
SRC_URI[main.sha256sum] = "2e91ebb6947a96e9436fb2b3926a8802efe63a6d375dffec4f82aa9dbd6fd43b"
--- /dev/null
+#!/bin/sh
+
+PTEST_DIR=/usr/lib/go/ptest
+GOROOT=/usr/lib/go
+
+export GOROOT
+export PATH=$GOROOT/bin:$PATH
+export ZONEINFO=/usr/share/zoneinfo
+
+ln -sf $PTEST_DIR/src $GOROOT/src
+mkdir -p $GOROOT/pkg/include
+cp $PTEST_DIR/pkg/include/* $GOROOT/pkg/include/
+cp $PTEST_DIR/VERSION $GOROOT/VERSION
+
+cd $GOROOT
+
+SKIP_PKGS="debug/dwarf debug/elf debug/pe debug/plan9obj go/types internal/xcoff net/http runtime testing time"
+
+SKIP_REGEX=$(echo "$SKIP_PKGS" | sed 's/ /|/g')
+
+for pkg in $(go list std); do
+ if echo "$pkg" | grep -qE "^($SKIP_REGEX)$"; then
+ echo "SKIP: $pkg"
+ continue
+ fi
+
+ if go test -short "$pkg" >/dev/null 2>&1; then
+ echo "PASS: $pkg"
+ else
+ echo "FAIL: $pkg"
+ fi
+done
require go-${PV}.inc
require go-target.inc
-inherit linuxloader
+inherit linuxloader ptest
CGO_LDFLAGS:append = " -no-pie"
d.appendVar('INSANE_SKIP:%s' % d.getVar('PN'), " textrel")
}
+do_install_ptest() {
+ install -d ${D}${PTEST_PATH}/src
+ install -d ${D}${PTEST_PATH}/pkg/include
+
+ cp ${S}/pkg/include/* ${D}${PTEST_PATH}/pkg/include/
+ echo "go${PV}" > ${D}${PTEST_PATH}/VERSION
+
+ cd ${S}/src
+ find . -type d -exec install -d ${D}${PTEST_PATH}/src/{} \;
+ find . -type f \
+ ! -path "*/testdata/*.elf*" \
+ ! -path "*/testdata/*-x86-64*" \
+ ! -path "*/testdata/*.obj" \
+ ! -path "*/testdata/*.syso" \
+ ! -path "*/testdata/*.so" \
+ ! -path "*/testdata/*.so_" \
+ ! -path "*/testdata/*-exec" \
+ ! -path "*/testdata/test32*" \
+ ! -path "*/testdata/test64*" \
+ ! -path "*/race/*.syso" \
+ ! -path "*/boring/syso/*.syso" \
+ -exec install -m 0644 {} ${D}${PTEST_PATH}/src/{} \;
+}
+
+RDEPENDS:${PN}-ptest += "bash tzdata git packagegroup-core-buildessential"