From b6ac2366686cb123cb50e74a676a8f450ec2229e Mon Sep 17 00:00:00 2001 From: fearful-symmetry Date: Fri, 20 Sep 2024 13:08:33 -0700 Subject: [PATCH] try different compile args? --- testing/scripts/gen_initramfs.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/testing/scripts/gen_initramfs.sh b/testing/scripts/gen_initramfs.sh index 213c3fd5..bf457379 100755 --- a/testing/scripts/gen_initramfs.sh +++ b/testing/scripts/gen_initramfs.sh @@ -37,7 +37,7 @@ build_testrunner() { pushd testrunner > /dev/null go clean - GOARCH=$goarch go test -c + GOARCH=$goarch CGO_ENABLED=0 go test -c -o testrunner -ldflags '-extldflags "-static"' if [[ $? -ne 0 ]] then @@ -78,7 +78,7 @@ invoke_bluebox() { local cmd="bluebox" cmd+=" -a $goarch" - cmd+=" -e testrunner/testrunner.test" + cmd+=" -e testrunner/testrunner" cmd+=" -r $eventstrace" cmd+=" -r $tcfiltertests" cmd+=" -r $tcfilterbpf"