diff options
| author | Ophestra <cat@gensokyo.uk> | 2026-05-02 02:23:51 +0900 |
|---|---|---|
| committer | Ophestra <cat@gensokyo.uk> | 2026-05-02 02:23:51 +0900 |
| commit | 5a18f1492906773b20a6e0ec2b1350edcaa8cb96 (patch) | |
| tree | ec64bf06ded68acc1899b89c3b1273628d103b60 | |
| parent | f12880688dad3dd9ac561927a765038d1c0990d4 (diff) | |
internal/rosa/gnu: bison disable broken test
This is miscompiled by the current toolchain.
Signed-off-by: Ophestra <cat@gensokyo.uk>
| -rw-r--r-- | internal/rosa/gnu.go | 10 |
1 files changed, 9 insertions, 1 deletions
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, |
