Sign in
go
/
go.git
/
a58afe44fa3be498e213bafa77455ffdfe5e23e2
/
.
/
src
/
cmd
/
go
/
testdata
/
script
/
test_no_tests.txt
blob: 2d624d1da6bb61db145abf9e05567d676606f22d [
file
]
# Tests issue #26242
go test testnorun
stdout 'testnorun\t\[no test files\]'
-- go.mod --
module testnorun
go 1.16
-- p.go --
package p
func init() {
panic("go test must not link and run test binaries without tests")
}