aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/go/testdata/script/cover_asm.txt
blob: 57f76d6c02890ebfba0202e2c8a08a690c20bdd8 (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
26
27
28
29
30
31
32
33
[short] skip
[gccgo] skip # gccgo has no cover tool

# Test cover for a package that has an assembly function.

go test -outputdir=$WORK -coverprofile=cover.out coverasm
go tool cover -func=$WORK/cover.out
stdout '\tg\t*100.0%' # Check g is 100% covered.
! stdout '\tf\t*[0-9]' # Check for no coverage on the assembly function

-- go.mod --
module coverasm

go 1.16
-- p.go --
package p

func f()

func g() {
	println("g")
}
-- p.s --
// empty asm file,
// so go test doesn't complain about declaration of f in p.go.
-- p_test.go --
package p

import "testing"

func Test(t *testing.T) {
	g()
}