check for SKIP on the regex and the if condition

This commit is contained in:
Peter Lacey-Bordeaux 2014-10-23 22:51:59 -04:00
parent d8b8d33660
commit 9922c23bd3

View File

@ -33,7 +33,7 @@ type Test struct {
} }
var ( var (
regexStatus = regexp.MustCompile(`^--- (PASS|FAIL): (.+) \((\d+\.\d+) seconds\)$`) regexStatus = regexp.MustCompile(`^--- (PASS|FAIL|SKIP): (.+) \((\d+\.\d+) seconds\)$`)
regexResult = regexp.MustCompile(`^(ok|FAIL)\s+(.+)\s(\d+\.\d+)s$`) regexResult = regexp.MustCompile(`^(ok|FAIL)\s+(.+)\s(\d+\.\d+)s$`)
) )
@ -87,7 +87,7 @@ func Parse(r io.Reader) (*Report, error) {
} else if test != nil { } else if test != nil {
if matches := regexStatus.FindStringSubmatch(line); len(matches) == 4 { if matches := regexStatus.FindStringSubmatch(line); len(matches) == 4 {
// test status // test status
if matches[1] == "PASS" { if matches[1] == "PASS" || matches[1] == "SKIP" {
test.Result = PASS test.Result = PASS
} else { } else {
test.Result = FAIL test.Result = FAIL