We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f0dd7b1 commit 1b1851bCopy full SHA for 1b1851b
zz-inliner_test.go
@@ -8,6 +8,7 @@ import (
8
"context"
9
"os/exec"
10
"regexp"
11
+ "runtime"
12
"testing"
13
"time"
14
)
@@ -20,6 +21,10 @@ import (
20
21
// The functions to check are listed in the funcs slice. If any function is
22
// missing the inlining message, the test fails.
23
func TestInlineBitSet256Functions(t *testing.T) {
24
+ if runtime.GOARCH != "amd64" && runtime.GOARCH != "arm64" {
25
+ t.Skip("Test only for 64-bit amd64 or arm64")
26
+ }
27
+
28
// List of functions expected to be inlined
29
funcs := []string{
30
"bitset.(*BitSet256).Set",
0 commit comments