sharlatan pushed a commit to branch go-team in repository guix. commit 39ff0f3e5542587c853e26a4d079257ee4a98e23 Author: Sharlatan Hellseher <sharlata...@gmail.com> AuthorDate: Fri Mar 21 21:30:49 2025 +0000
gnu: go-github-com-cilium-ebpf: Skip some tests on i686 system. * gnu/packages/golang-xyz.scm (go-github-com-cilium-ebpf) [arguments] <test-flags>: Skip 5 tests failing on 64bit system. Change-Id: Ib61c7ee6f26cd13ae7ee68b12e82ffbbd21004c0 --- gnu/packages/golang-xyz.scm | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index ce95c6f457..177befb51a 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -3194,7 +3194,15 @@ levels that works by wrapping the standard @code{log} library.") "TestFSType" "TestEventID" "TestSanitizePath" - "TestGetTracefsPath") + "TestGetTracefsPath" + ;; Tests failing on i686-linux system. + #$@(if (target-x86?) + '("TestAuxvVDSOMemoryAddress/auxv64le.bin" + "TestUnsafeB.*/.*_with_trailing_padding" + "TestUnsafeB.*/.*_with_interspersed_padding" + "TestUnsafeB.*/.*_between_slice_entries" + "TestUnsafeB.*/.*_between_array_entries") + '())) "|")) ;; XXX: 337 tests failed and 664 passed when "..." is preserved, run ;; some of available tests, figure out how to fix the rests.