Skip to content
This repository was archived by the owner on Sep 7, 2022. It is now read-only.

Commit bc4b6d7

Browse files
author
Jeff Verkoeyen
committed
Merge branch 'develop' into stable
2 parents 4ab1f79 + 45caed0 commit bc4b6d7

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 3.0.4
2+
3+
* Resolved [issue #3](https://github.com/google/arc-xcode-test-engine/issues/3): Using test engine with Quick testing library gets "Unable to parse line" error. Thanks to [KevM](https://github.com/KevM) for filing.
4+
15
## 3.0.3
26

37
* Resolved coverage failure with Xcode 7.3 and newer. Thanks to [aelam](https://github.com/aelam) for filing [#2](https://github.com/google/arc-xcode-test-engine/issues/2).

parser/XcodeTestResultParser.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ public function parseTestResults($path, $test_results) {
9090
}
9191

9292
// End of a test.
93-
if (!preg_match('/\'-\[.+? test(.+?)\]\' (.+?) \((.+?) seconds\\).$/', $line, $matches)) {
93+
if (!preg_match('/\'-\[\S*\s(?:test)*(.+?)\]\' (.+?) \((.+?) seconds\).$/', $line, $matches)) {
9494
echo "Unable to parse line:\n$line\n";
9595
continue;
9696
}

0 commit comments

Comments
 (0)