aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/go/testdata/script/cover_atomic_pkgall.txt
blob: c3bc67df534687b7823a4244e8b9a612e976d70e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
env GO111MODULE=off

[short] skip

go test -coverpkg=all -covermode=atomic x
stdout ok[\s\S]+?coverage

[!race] stop

go test -coverpkg=all -race x
stdout ok[\s\S]+?coverage

-- x/x.go --
package x

import _ "sync/atomic"

func F() {}

-- x/x_test.go --
package x

import "testing"

func TestF(t *testing.T) { F() }