var testing.matchList

8 uses

	testing (current package)
		testing.go#L287: 	matchList = flag.String("test.list", "", "list tests, examples, and benchmarks matching `regexp` then exit")
		testing.go#L314: 	matchList            *string
		testing.go#L1405: 	if len(*matchList) != 0 {
		testing.go#L1452: 	if _, err := matchString(*matchList, "non-empty"); err != nil {
		testing.go#L1453: 		fmt.Fprintf(os.Stderr, "testing: invalid regexp in -test.list (%q): %s\n", *matchList, err)
		testing.go#L1458: 		if ok, _ := matchString(*matchList, test.Name); ok {
		testing.go#L1463: 		if ok, _ := matchString(*matchList, bench.Name); ok {
		testing.go#L1468: 		if ok, _ := matchString(*matchList, example.Name); ok {