We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0981724 commit aa34ea2Copy full SHA for aa34ea2
src/runtime/checkptr_test.go
@@ -12,6 +12,12 @@ import (
12
)
13
14
func TestCheckPtr(t *testing.T) {
15
+ // This test requires rebuilding packages with -d=checkptr=1,
16
+ // so it's somewhat slow.
17
+ if testing.Short() {
18
+ t.Skip("skipping test in -short mode")
19
+ }
20
+
21
t.Parallel()
22
testenv.MustHaveGoRun(t)
23
@@ -57,6 +63,12 @@ func TestCheckPtr(t *testing.T) {
57
63
}
58
64
59
65
func TestCheckPtr2(t *testing.T) {
66
+ // This test requires rebuilding packages with -d=checkptr=2,
67
68
69
70
71
60
72
61
73
62
74
0 commit comments