From 9922c23bd35b82e09a2d2464e3d53f831b07fb96 Mon Sep 17 00:00:00 2001 From: Peter Lacey-Bordeaux Date: Thu, 23 Oct 2014 22:51:59 -0400 Subject: [PATCH] check for SKIP on the regex and the if condition --- parser.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/parser.go b/parser.go index c5f62eb..f7d9604 100644 --- a/parser.go +++ b/parser.go @@ -33,7 +33,7 @@ type Test struct { } 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$`) ) @@ -87,7 +87,7 @@ func Parse(r io.Reader) (*Report, error) { } else if test != nil { if matches := regexStatus.FindStringSubmatch(line); len(matches) == 4 { // test status - if matches[1] == "PASS" { + if matches[1] == "PASS" || matches[1] == "SKIP" { test.Result = PASS } else { test.Result = FAIL