diff options
author | Remi Collet <remi@remirepo.net> | 2020-10-26 15:39:45 +0100 |
---|---|---|
committer | Remi Collet <remi@remirepo.net> | 2020-10-26 15:39:45 +0100 |
commit | 7371157eec6270c000b88b48a8cddc5cc460ca82 (patch) | |
tree | a7c6442af566596418892b5910e30e925aca052f | |
parent | 1bce170713032a257eba575db239c85a6d82adf2 (diff) |
skip 1 test on 32-bit
-rw-r--r-- | php-phpunit-php-timer5.spec | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/php-phpunit-php-timer5.spec b/php-phpunit-php-timer5.spec index 1d9fcae..60dc025 100644 --- a/php-phpunit-php-timer5.spec +++ b/php-phpunit-php-timer5.spec @@ -84,7 +84,11 @@ ret=0 for cmd in php php73 php74 php80; do if which $cmd; then $cmd -d auto_prepend_file=%{buildroot}%{php_home}/%{ns_vendor}/%{ns_project}%{major}/autoload.php \ - %{_bindir}/phpunit9 --verbose || ret=1 + %{_bindir}/phpunit9 \ +%if %{__isa_bits} < 64 + --filter '^((?!(testCanBeFormattedAsString)).)*$' \ +%endif + --verbose || ret=1 fi done exit $ret @@ -104,6 +108,8 @@ exit $ret %changelog * Mon Oct 26 2020 Remi Collet <remi@remirepo.net> - 5.0.3-1 - update to 5.0.3 +- open https://github.com/sebastianbergmann/php-timer/issues/34 + 32-bit compatibility * Mon Sep 28 2020 Remi Collet <remi@remirepo.net> - 5.0.2-1 - update to 5.0.2 (no change) |