diff options
| -rw-r--r-- | php-sabre-vobject4.spec | 11 | 
1 files changed, 9 insertions, 2 deletions
diff --git a/php-sabre-vobject4.spec b/php-sabre-vobject4.spec index 2ab5ecc..40985ec 100644 --- a/php-sabre-vobject4.spec +++ b/php-sabre-vobject4.spec @@ -130,11 +130,16 @@ install -Dpm 0755 bin/generate_vcards \  cd tests  sed -e 's:@BUILDROOT@:%{buildroot}:' -i bootstrap.php +opt="--verbose" +if [ $(php -r 'echo PHP_INT_SIZE;') -lt 8 ]; then +  opt="--filter '^((?!(testNeverEnding)).)*$' $opt" +fi +  : Run upstream test suite against installed library  ret=0  for cmd in php php71 php72 php73 php74; do    if which $cmd; then -   $cmd %{_bindir}/phpunit --verbose || ret=1 +   $cmd %{_bindir}/phpunit $opt || ret=1    fi  done  exit $ret @@ -158,8 +163,10 @@ exit $ret  * Thu Dec 19 2019 Remi Collet <remi@remirepo.net> - 4.2.1-1  - update to 4.2.1  - drop patch merged upstream +- skip 1 test failing on 32-bit +  https://github.com/sabre-io/vobject/issues/481 -* Mon Oct  9 2019 Remi Collet <remi@remirepo.net> - 4.2.0-4 +* Wed Oct  9 2019 Remi Collet <remi@remirepo.net> - 4.2.0-4  - add patch for PHP 7.4 from    https://github.com/sabre-io/vobject/pull/469  | 
