From 5a18f1492906773b20a6e0ec2b1350edcaa8cb96 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 0a944d6a..4abe7eda 100644 --- a/internal/rosa/gnu.go +++ b/internal/rosa/gnu.go @@ -84,7 +84,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,