Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianbergmann authored and marcospassos committed Nov 12, 2018
1 parent f0fc2ff commit 2a8a08c
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 10 deletions.
1 change: 1 addition & 0 deletions ChangeLog-7.4.md
Expand Up @@ -7,6 +7,7 @@ All notable changes of the PHPUnit 7.4 release series are documented in this fil
### Fixed

* Fixed [#3379](https://github.com/sebastianbergmann/phpunit/issues/3379): Dependent test of skipped test has status `-1`
* Fixed [#3394](https://github.com/sebastianbergmann/phpunit/issues/3394): Process Isolation does not work when PHPUnit is used as PHAR

## [7.4.3] - 2018-10-23

Expand Down
18 changes: 8 additions & 10 deletions build/binary-phar-autoload.php.in
Expand Up @@ -40,18 +40,16 @@ Phar::mapPhar('___PHAR___');

___FILELIST___

if (!$execute) {
exit;
}

if (isset($printManifest)) {
print file_get_contents(__PHPUNIT_PHAR_ROOT__ . '/manifest.txt');
if ($execute) {
if (isset($printManifest)) {
print file_get_contents(__PHPUNIT_PHAR_ROOT__ . '/manifest.txt');

exit;
}
exit;
}

unset($execute);
unset($execute);

PHPUnit\TextUI\Command::main();
PHPUnit\TextUI\Command::main();
}

__HALT_COMPILER();

0 comments on commit 2a8a08c

Please sign in to comment.