diff options
author | Remi Collet <remi@remirepo.net> | 2018-10-16 10:19:14 +0200 |
---|---|---|
committer | Remi Collet <remi@remirepo.net> | 2018-10-16 10:19:14 +0200 |
commit | c1762c7179e5db01c163b3519dbc774689220e76 (patch) | |
tree | 6a454d5dadf669c3c6dd19d71ca7f5ef41a8b1e7 | |
parent | b47a39b9528724a7e9e6d1dd0d0f628c7c233059 (diff) |
ignore 1 failed test related to behavior change in 7.3
open https://github.com/mikey179/vfsStream/pull/172
-rw-r--r-- | php-mikey179-vfsstream.spec | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/php-mikey179-vfsstream.spec b/php-mikey179-vfsstream.spec index 847433c..8304b06 100644 --- a/php-mikey179-vfsstream.spec +++ b/php-mikey179-vfsstream.spec @@ -14,7 +14,7 @@ Name: php-mikey179-vfsstream Version: 1.6.5 -Release: 3%{?dist} +Release: 5%{?dist} Summary: PHP stream wrapper for a virtual file system License: BSD @@ -79,9 +79,10 @@ cp -pr src/main/php/org %{buildroot}%{_datadir}/php/org rm src/test/php/org/bovigo/vfs/vfsStreamWrapperLargeFileTestCase.php ret=0 -for cmd in php php56 php70 php71 php72; do +for cmd in php php70 php71 php72 php73; do if which $cmd; then $cmd %{_bindir}/phpunit \ + --filter '^((?!(directoriesAreNeverExecutable|directoriesAndNonExistingFilesAreNeverExecutable)).)*$' \ --bootstrap %{buildroot}%{_datadir}/php/org/bovigo/vfs/autoload.php \ --verbose || ret=1 fi @@ -102,6 +103,10 @@ exit $ret %changelog +* Tue Oct 16 2018 Remi Collet <remi@remirepo.net> - 1.6.5-5 +- ignore 1 failed test related to behavior change in 7.3 + open https://github.com/mikey179/vfsStream/pull/172 + * Mon Mar 5 2018 Remi Collet <remi@remirepo.net> - 1.6.5-3 - provides both mikey179/vfsstream and mikey179/vfsStream |