diff options
author | Remi Collet <fedora@famillecollet.com> | 2016-07-01 15:08:31 +0200 |
---|---|---|
committer | Remi Collet <fedora@famillecollet.com> | 2016-07-01 15:08:31 +0200 |
commit | fe7a99822e324e7d857972d35eacd03a25b3c722 (patch) | |
tree | da205bbea14da57afa5c5783cd2ff62c0b6e03b1 /atoum.spec | |
parent | ce3f6188bda0c3e045067319f037001f0c5454e1 (diff) |
atoum 2.8.0
Diffstat (limited to 'atoum.spec')
-rw-r--r-- | atoum.spec | 25 |
1 files changed, 18 insertions, 7 deletions
@@ -7,11 +7,11 @@ # # Please preserve changelog entries # -%global gh_commit 1d442459f3afd96375cf8b12f663c3e18253882d +%global gh_commit a3bceadf39cccd4cc321407eeb61187bdee438cd %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) Name: atoum -Version: 2.7.0 +Version: 2.8.0 Release: 1%{?dist} Summary: PHP Unit Testing framework @@ -139,14 +139,22 @@ cd tests/units echo "date.timezone=UTC" >php.ini export PHPRC=$(pwd)/php.ini +# remirepo:11 +run=0 +ret=0 +if which php56; then + php56 runner.php --directories . || ret=1 + run=1 +fi if which php70; then - php70 runner.php --directories . + php70 runner.php --directories . || ret=1 + run=1 fi -if which php56; then - php56 runner.php --directories . -else - php runner.php --directories . +if [ $run -eq 0 ]; then +php runner.php --directories . +# remirepo:2 fi +exit $ret %else : Tests skipped %endif @@ -167,6 +175,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 1 2016 Remi Collet <remi@fedoraproject.org> - 2.8.0-1 +- update to 2.8.0 + * Sat May 21 2016 Remi Collet <remi@fedoraproject.org> - 2.7.0-1 - update to 2.7.0 |