[php-pecl-http] - Update to 2.1.0 - ignore known failed tests with PHP 5.3.3 - run test suite during build

Remi Collet remi at fedoraproject.org
Mon Sep 1 11:28:16 UTC 2014


commit ead464760fd69c0202c4d0ac82b3e54fe8b5cad7
Author: Remi Collet <remi at fedoraproject.org>
Date:   Mon Sep 1 13:28:17 2014 +0200

    - Update to 2.1.0
    - ignore known failed tests with PHP 5.3.3
    - run test suite during build

 .gitignore         |    1 +
 php-pecl-http.spec |   47 ++++++++++++++++++++++++++++++++++++++++++-----
 sources            |    2 +-
 3 files changed, 44 insertions(+), 6 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index dcdc477..1cbe46e 100644
--- a/.gitignore
+++ b/.gitignore
@@ -18,3 +18,4 @@ php-pecl-http.spec~
 /pecl_http-2.0.5.tgz
 /pecl_http-2.0.6.tgz
 /pecl_http-2.0.7.tgz
+/pecl_http-2.1.0.tgz
diff --git a/php-pecl-http.spec b/php-pecl-http.spec
index befa875..a87677f 100644
--- a/php-pecl-http.spec
+++ b/php-pecl-http.spec
@@ -22,10 +22,11 @@
 # after 40-json 20-iconv 40-propro 40-raphf
 %global ini_name  50-%{pecl_name}.ini
 %endif
+%global with_tests %{?_without_tests:0}%{!?_without_tests:1}
 
 Name:           php-pecl-http
-Version:        2.0.7
-Release:        2%{?dist}
+Version:        2.1.0
+Release:        1%{?dist}
 Summary:        Extended HTTP support
 
 License:        BSD
@@ -192,26 +193,57 @@ done
 
 
 %check
+%if "%{php_version}" < "5.4"
+# Known failed test with 5.3.3 (need investigations)
+rm ?TS/tests/envrequestbody001.phpt \
+   ?TS/tests/envrequestbody002.phpt \
+   ?TS/tests/envrequestbody003.phpt \
+   ?TS/tests/envrequestjson002.phpt \
+   ?TS/tests/envresponse015.phpt
+%endif
+
 # Shared needed extensions
 modules=""
 for mod in json hash iconv propro raphf; do
   if [ -f %{php_extdir}/${mod}.so ]; then
-    modules="$modules --define extension=${mod}.so"
+    modules="$modules -d extension=${mod}.so"
   fi
 done
 
 : Minimal load test for NTS extension
 %{__php} --no-php-ini \
     $modules \
-    --define extension=$PWD/NTS/modules/%{pecl_name}.so \
+    --define extension=%{buildroot}%{php_extdir}/%{pecl_name}.so \
     --modules | grep %{pecl_name}
 
+%if %{with_tests}
+: Upstream test suite NTS extension
+cd NTS
+SKIP_ONLINE_TESTS=1 \
+TEST_PHP_EXECUTABLE=%{__php} \
+TEST_PHP_ARGS="-n $modules -d extension=$PWD/modules/%{pecl_name}.so" \
+NO_INTERACTION=1 \
+REPORT_EXIT_STATUS=1 \
+%{__php} -n run-tests.php --show-diff
+%endif
+
 %if %{with_zts}
 : Minimal load test for ZTS extension
 %{__ztsphp} --no-php-ini \
     $modules \
-    --define extension=$PWD/ZTS/modules/%{pecl_name}.so \
+    --define extension=%{buildroot}%{php_ztsextdir}/%{pecl_name}.so \
     --modules | grep %{pecl_name}
+
+%if %{with_tests}
+: Upstream test suite ZTS extension
+cd ../ZTS
+SKIP_ONLINE_TESTS=1 \
+TEST_PHP_EXECUTABLE=%{__ztsphp} \
+TEST_PHP_ARGS="-n $modules -d extension=$PWD/modules/%{pecl_name}.so" \
+NO_INTERACTION=1 \
+REPORT_EXIT_STATUS=1 \
+%{__ztsphp} -n run-tests.php --show-diff
+%endif
 %endif
 
 
@@ -246,6 +278,11 @@ fi
 
 
 %changelog
+* Mon Sep  1 2014 Remi Collet <remi at fedoraproject.org> - 2.1.0-1
+- Update to 2.1.0
+- ignore known failed tests with PHP 5.3.3
+- run test suite during build
+
 * Sun Aug 17 2014 Fedora Release Engineering <rel-eng at lists.fedoraproject.org> - 2.0.7-2
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
 
diff --git a/sources b/sources
index 4df8dab..5810b0f 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-49482e5fc049bea682d65314c65ae8ea  pecl_http-2.0.7.tgz
+32b7d03c761a9e789dc6ad49daf2c101  pecl_http-2.1.0.tgz


More information about the scm-commits mailing list