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

Commit

Permalink
Merge branch 'develop' into stable
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeff Verkoeyen committed Apr 7, 2016
2 parents 739c686 + db14259 commit b4410f2
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 2.1.1

* Improved overall test parsing time by approximately 50%.

## 2.1.0

* Added a `pre-build` configuration option.
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# xcode-test-engine for arc

xcode-test-engine is a test engine for use with [Phabricator](phabricator.org)'s `arc` command line tool.
xcode-test-engine is a test engine for use with [Phabricator](http://phabricator.org)'s `arc`
command line tool.

## Features

Expand Down
2 changes: 1 addition & 1 deletion parser/XcodeTestResultParser.php
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public function parseTestResults($path, $test_results) {
continue;
}

if (preg_match('/.+?error:/', $line) === 1) {
if (strpos($line, 'error:') !== false) {
$result = new ArcanistUnitTestResult();
$result->setName('xcode-unit-engine');
foreach ($this->xcodeargs as $arg) {
Expand Down

0 comments on commit b4410f2

Please sign in to comment.