blob: 92fc1ebddabd0963a608a3a515422af7cba87b7b [file] [log] [blame]
[short] skip
[!cgo] skip
[gccgo] skip # gccgo has no cover tool
# Test coverage on cgo code. This test case has an external
# test that tests the code and an in-package test file with
# no test cases.
go test -short -cover cgocover3
stdout 'coverage:.*[1-9][0-9.]+%'
! stderr '[^0-9]0\.0%'
-- cgocover3/p.go --
package p
/*
void
f(void)
{
}
*/
import "C"
var b bool
func F() {
if b {
for {
}
}
C.f()
}
-- cgocover3/p_test.go --
package p
-- cgocover3/x_test.go --
package p_test
import (
. "cgocover3"
"testing"
)
func TestF(t *testing.T) {
F()
}