aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/go/testdata/script/test_no_tests.txt
blob: d75bcff934fd7eec4f18b93d02bf00b5037ee005 (plain)
1
2
3
4
5
6
7
8
9
10
11
# Tests issue #26242

go test testnorun
stdout 'testnorun\t\[no test files\]'

-- testnorun/p.go --
package p

func init() {
	panic("go test must not link and run test binaries without tests")
}