summaryrefslogtreecommitdiffstats
path: root/phpunit9-rpm.patch
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2021-12-30 09:06:30 +0100
committerRemi Collet <remi@php.net>2021-12-30 09:06:30 +0100
commit64bb7cf521f88682c8d66c89e6f5a4f10c704d0e (patch)
tree5a9e9b901121b688c47a8ef4df51dba6794776dc /phpunit9-rpm.patch
parent762f66c6697a06beb067f1f6541ced9d45014cc5 (diff)
update to 9.5.11
Diffstat (limited to 'phpunit9-rpm.patch')
-rw-r--r--phpunit9-rpm.patch42
1 files changed, 21 insertions, 21 deletions
diff --git a/phpunit9-rpm.patch b/phpunit9-rpm.patch
index d52fde6..0360db7 100644
--- a/phpunit9-rpm.patch
+++ b/phpunit9-rpm.patch
@@ -1,19 +1,24 @@
diff -up ./phpunit.rpm ./phpunit
---- ./phpunit.rpm 2021-08-02 09:09:31.000000000 +0200
-+++ ./phpunit 2021-08-02 09:09:33.927568458 +0200
-@@ -58,25 +58,12 @@ if (!ini_get('date.timezone')) {
- ini_set('date.timezone', 'UTC');
- }
+--- ./phpunit.rpm 2021-12-30 09:04:15.000000000 +0100
++++ ./phpunit 2021-12-30 09:05:07.774778660 +0100
+@@ -62,27 +62,11 @@ if (isset($GLOBALS['_composer_autoload_p
+ define('PHPUNIT_COMPOSER_INSTALL', $GLOBALS['_composer_autoload_path']);
--foreach (array(__DIR__ . '/../../autoload.php', __DIR__ . '/../vendor/autoload.php', __DIR__ . '/vendor/autoload.php') as $file) {
-- if (file_exists($file)) {
-- define('PHPUNIT_COMPOSER_INSTALL', $file);
+ unset($GLOBALS['_composer_autoload_path']);
++} else if (file_exists('./vendor/phpunit/phpunit/phpunit') && file_exists('./vendor/autoload.php')) {
++ echo "\n==== Redirecting to composer installed version in vendor/phpunit ====\n\n";
++ define ('PHPUNIT_COMPOSER_INSTALL', realpath('./vendor/autoload.php'));
+ } else {
+- foreach (array(__DIR__ . '/../../autoload.php', __DIR__ . '/../vendor/autoload.php', __DIR__ . '/vendor/autoload.php') as $file) {
+- if (file_exists($file)) {
+- define('PHPUNIT_COMPOSER_INSTALL', $file);
-
-- break;
+- break;
+- }
- }
--}
-
--unset($file);
+- unset($file);
+-}
-
-if (!defined('PHPUNIT_COMPOSER_INSTALL')) {
- fwrite(
@@ -24,16 +29,11 @@ diff -up ./phpunit.rpm ./phpunit
- );
-
- die(1);
-+// Libraries PATH
-+if (file_exists('./vendor/phpunit/phpunit/phpunit') && file_exists('./vendor/autoload.php')) {
-+ echo "\n==== Redirecting to composer installed version in vendor/phpunit ====\n\n";
-+ define ('PHPUNIT_COMPOSER_INSTALL', realpath('./vendor/autoload.php'));
-+} else {
+ define ('PHPUNIT_COMPOSER_INSTALL', '/usr/share/php/PHPUnit9/autoload.php');
}
$options = getopt('', array('prepend:'));
-@@ -89,4 +76,8 @@ unset($options);
+@@ -95,4 +79,8 @@ unset($options);
require PHPUNIT_COMPOSER_INSTALL;
@@ -44,8 +44,8 @@ diff -up ./phpunit.rpm ./phpunit
+ PHPUnit\TextUI\Command::main(); // PHPUnit v6 or newer
+}
diff -up ./src/Util/Xml/SchemaFinder.php.rpm ./src/Util/Xml/SchemaFinder.php
---- ./src/Util/Xml/SchemaFinder.php.rpm 2021-08-02 09:09:31.000000000 +0200
-+++ ./src/Util/Xml/SchemaFinder.php 2021-08-02 09:09:33.927568458 +0200
+--- ./src/Util/Xml/SchemaFinder.php.rpm 2021-12-30 09:04:15.000000000 +0100
++++ ./src/Util/Xml/SchemaFinder.php 2021-12-30 09:04:21.186910890 +0100
@@ -48,6 +48,6 @@ final class SchemaFinder
return __PHPUNIT_PHAR_ROOT__ . '/';
}
@@ -55,8 +55,8 @@ diff -up ./src/Util/Xml/SchemaFinder.php.rpm ./src/Util/Xml/SchemaFinder.php
}
}
diff -up ./tests/bootstrap.php.rpm ./tests/bootstrap.php
---- ./tests/bootstrap.php.rpm 2021-08-02 09:09:33.928568455 +0200
-+++ ./tests/bootstrap.php 2021-08-02 09:10:37.377383177 +0200
+--- ./tests/bootstrap.php.rpm 2021-12-30 09:04:15.000000000 +0100
++++ ./tests/bootstrap.php 2021-12-30 09:04:21.186910890 +0100
@@ -9,8 +9,8 @@
*/
const TEST_FILES_PATH = __DIR__ . DIRECTORY_SEPARATOR . '_files' . DIRECTORY_SEPARATOR;