diff options
| author | Ophestra <cat@gensokyo.uk> | 2026-05-21 23:06:34 +0900 |
|---|---|---|
| committer | Ophestra <cat@gensokyo.uk> | 2026-05-21 23:06:34 +0900 |
| commit | 68a91523b9e58ee8a9f86723d616e82c0645b64a (patch) | |
| tree | a16f116b6b606d50bd2e887a173b981552ca0eb0 /internal/rosa/bison_test.go | |
| parent | 564732162223e76a307bb06e132e9f0351f239bf (diff) | |
internal/rosa/package: migrate bison
This is the final remaining trivial legacy artifact.
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'internal/rosa/bison_test.go')
| -rw-r--r-- | internal/rosa/bison_test.go | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/internal/rosa/bison_test.go b/internal/rosa/bison_test.go deleted file mode 100644 index 94d82618..00000000 --- a/internal/rosa/bison_test.go +++ /dev/null @@ -1,35 +0,0 @@ -package rosa - -import ( - "slices" - "strconv" - "strings" - "testing" -) - -func TestSkipGNUTests(t *testing.T) { - t.Parallel() - - testCases := []struct { - tests []int - want string - }{ - {[]int{764}, "1-763 765-"}, - {[]int{764, 0xcafe, 37, 9}, "1-8 10-36 38-763 765-51965 51967-"}, - {[]int{1, 2, 0xbed}, "3-3052 3054-"}, - {[]int{3, 4}, "1-2 5-"}, - } - for _, tc := range testCases { - t.Run(strings.Join(slices.Collect(func(yield func(string) bool) { - for _, n := range tc.tests { - yield(strconv.Itoa(n)) - } - }), ","), func(t *testing.T) { - t.Parallel() - - if got := skipGNUTests(tc.tests...); got != tc.want { - t.Errorf("skipGNUTests: %q, want %q", got, tc.want) - } - }) - } -} |
