diff options
author | Remi Collet <remi@remirepo.net> | 2017-11-01 15:16:10 +0100 |
---|---|---|
committer | Remi Collet <remi@remirepo.net> | 2017-11-01 15:16:10 +0100 |
commit | 8c938ae6055f63638cf37027c8a2583b1b078f73 (patch) | |
tree | ec4b2ffe2ab1f571715b50aa2d349e59d801be95 /php-phpmd-PHP-PMD.spec | |
parent | a346ac5545e05f95aec38e395802b8c4f2add674 (diff) |
improve %check
Diffstat (limited to 'php-phpmd-PHP-PMD.spec')
-rw-r--r-- | php-phpmd-PHP-PMD.spec | 19 |
1 files changed, 5 insertions, 14 deletions
diff --git a/php-phpmd-PHP-PMD.spec b/php-phpmd-PHP-PMD.spec index b3a5e84..9ddd6a8 100644 --- a/php-phpmd-PHP-PMD.spec +++ b/php-phpmd-PHP-PMD.spec @@ -119,21 +119,12 @@ require '%{buildroot}%{php_home}/autoload.php'; \Fedora\Autoloader\Autoload::addPsr4('PHPMD\\', __DIR__ . '/PHPMD'); EOF -# remirepo:11 ret=0 -run=0 -if which php71; then - php71 %{_bindir}/phpunit --verbose --columns max || ret=1 - run=1 -fi -if which php56; then - php56 %{_bindir}/phpunit --verbose --columns max || ret=1 - run=1 -fi -if [ $run -eq 0 ]; then -%{_bindir}/phpunit --verbose -# remirepo:2 -fi +for cmd in php php56 php70 php71 php72; do + if which $cmd; then + $cmd %{_bindir}/phpunit --columns max --verbose || ret=1 + fi +done exit $ret %else : Test suite disabled |