Text file src/cmd/go/testdata/script/test_minus_n.txt
1 # The intent here is to verify that 'go test -n' works without crashing. 2 # Any test will do. 3 4 go test -n x_test.go 5 6 -- x_test.go -- 7 package x_test 8 9 import ( 10 "testing" 11 ) 12 13 func TestEmpty(t *testing.T) { 14 } 15