From 700094f4d9ea69cce7a6ec3c2e6973029fb7aec3 Mon Sep 17 00:00:00 2001 From: Janneke Nieuwenhuizen Date: Sun, 8 Dec 2024 10:44:34 +0100 Subject: [PATCH] gnu: go-1.21.5: Skip test failing with gcc-14. * gnu/packages/golang.scm (go-1.21)[arguments]: Add "remove-failing-test" phase. Change-Id: Ie12c23c41f82e752cad8b4f7f2689628f05670af --- gnu/packages/golang.scm | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index b1ea9e5a28..f5aa69d871 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -883,6 +883,13 @@ in the style of communicating sequential processes (@dfn{CSP}).") (substitute* "src/cmd/go/testdata/script/cgo_path_space.txt" (("/bin/sh") (which "sh"))))) + (add-after 'unpack 'remove-failing-test + (lambda _ + ;; This test fails with newer gcc's + ;; https://github.com/golang/go/issues/57691 + (substitute* "src/cmd/cgo/internal/testsanitizers/asan_test.go" + ((".*arena_fail.*") "")))) + (add-after 'enable-external-linking 'enable-external-linking-1.21 (lambda _ ;; Invoke GCC to link any archives created with GCC (that is,