aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/go/testdata/script/test_minus_n.txt
blob: 9900dbca0b88f4c66fa6ca21f86a1668e60643a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# The intent here is to verify that 'go test -n' works without crashing.
# Any test will do.

go test -n x_test.go

-- x_test.go --
package x_test

import (
	"testing"
)

func TestEmpty(t *testing.T) {
}