Home | History | Annotate | Download | only in runner

Lines Matching refs:pattern

56 	testToRun          = flag.String("test", "", "The pattern to filter tests to run, or empty to run all tests")
74 // DisabledTests maps from a glob-based pattern to a freeform string.
75 // The glob pattern is used to exclude tests from being run and the
14168 fmt.Fprintf(os.Stderr, "Error matching pattern: %s\n", err)
14174 for pattern := range shimConfig.DisabledTests {
14175 isDisabled, err := filepath.Match(pattern, testCases[i].name)
14177 fmt.Fprintf(os.Stderr, "Error matching pattern %q from config file: %s\n", pattern, err)