Revert changes to coverage regexps

Add expected test output instead
This commit is contained in:
Ingmar Stein 2017-07-25 09:25:47 +02:00
parent a9c8bce520
commit 0f1caf6c3e
2 changed files with 8 additions and 4 deletions

View File

@ -312,7 +312,9 @@ var testCases = []TestCase{
Name: "TestB",
Time: 300,
Result: parser.PASS,
Output: []string{},
Output: []string{
"coverage: 10% of statements",
},
},
},
CoveragePct: "10.0",
@ -722,7 +724,9 @@ var testCases = []TestCase{
Name: "TestB",
Time: 300,
Result: parser.PASS,
Output: []string{},
Output: []string{
"coverage: 10% of statements in fmt, encoding/xml",
},
},
},
CoveragePct: "10.0",

View File

@ -41,8 +41,8 @@ type Test struct {
var (
regexStatus = regexp.MustCompile(`^\s*--- (PASS|FAIL|SKIP): (.+) \((\d+\.\d+)(?: seconds|s)\)$`)
regexCoverage = regexp.MustCompile(`^coverage:\s+(\d+(?:\.\d+)?)%\s+of\s+statements(?:\sin\s.+)?$`)
regexResult = regexp.MustCompile(`^(ok|FAIL)\s+([^ ]+)\s+(?:(\d+\.\d+)s|(\[\w+ failed]))(?:\s+coverage:\s+(\d+(?:\.\d+))%\sof\sstatements(?:\sin\s.+)?)?$`)
regexCoverage = regexp.MustCompile(`^coverage:\s+(\d+\.\d+)%\s+of\s+statements(?:\sin\s.+)?$`)
regexResult = regexp.MustCompile(`^(ok|FAIL)\s+([^ ]+)\s+(?:(\d+\.\d+)s|(\[\w+ failed]))(?:\s+coverage:\s+(\d+\.\d+)%\sof\sstatements(?:\sin\s.+)?)?$`)
regexOutput = regexp.MustCompile(`( )*\t(.*)`)
regexSummary = regexp.MustCompile(`^(PASS|FAIL|SKIP)$`)
)