aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/go/testdata/script/test_match_no_tests.txt
blob: 1ad2097848faecf85fe9ee4b9771c0722909311f (plain)
1
2
3
4
5
6
7
8
9
10
11
# Matches no tests
go test -run ThisWillNotMatch standalone_test.go
stdout '^ok.*\[no tests to run\]'

-- standalone_test.go --
package standalone_test

import "testing"

func Test(t *testing.T) {
}