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 {
 |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |