Text file src/cmd/go/testdata/script/test_match_only_tests.txt

     1  # Matches only tests
     2  go test -run Test standalone_test.go
     3  ! stdout '^ok.*\[no tests to run\]'
     4  ! stderr '^ok.*\[no tests to run\]'
     5  stdout '^ok'
     6  
     7  -- standalone_test.go --
     8  package standalone_test
     9  
    10  import "testing"
    11  
    12  func Test(t *testing.T) {
    13  }

View as plain text