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

Commit 97e7577

Browse files
author
Jeff Verkoeyen
committed
Merge branch 'develop' into stable
2 parents c792fff + a6d8900 commit 97e7577

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 3.0.2
2+
3+
* Resolves crash caused by referencing the wrong stderr variable. The error was
4+
`Attempt to read from undeclared property XcodeUnitTestEngine::stderr`.
5+
16
## 3.0.1
27

38
* If tests fail to build we no longer generate a

engine/XcodeUnitTestEngine.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ public function run() {
133133
if ($builderror !== 0 && $builderror !== 65) {
134134
return array(id(new ArcanistUnitTestResult())
135135
->setName("Xcode test engine")
136-
->setUserData($this->stderr)
136+
->setUserData($xcbuild_stderr)
137137
->setResult(ArcanistUnitTestResult::RESULT_BROKEN));
138138
}
139139

0 commit comments

Comments
 (0)