From b5890c1c45d10f1b1ed202735b22f2a8c6367620 Mon Sep 17 00:00:00 2001 From: Ophestra Date: Sat, 2 May 2026 02:23:51 +0900 Subject: [PATCH] internal/rosa/gnu: bison disable broken test This is miscompiled by the current toolchain. Signed-off-by: Ophestra --- internal/rosa/gnu.go | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/internal/rosa/gnu.go b/internal/rosa/gnu.go index 43c4631e..2c6c7f58 100644 --- a/internal/rosa/gnu.go +++ b/internal/rosa/gnu.go @@ -76,7 +76,15 @@ func (t Toolchain) newBison() (pkg.Artifact, string) { "https://ftpmirror.gnu.org/gnu/bison/bison-"+version+".tar.gz", checksum, pkg.TarGzip, - ), nil, (*MakeHelper)(nil), + ), nil, &MakeHelper{ + Check: []string{ + "TESTSUITEFLAGS=" + jobsFlagE + "' " + skipGNUTests( + // clang miscompiles (SIGILL) + 764, + ) + "'", + "check", + }, + }, M4, Diffutils, Sed,