summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2023-09-14 10:03:15 +0200
committerRemi Collet <remi@php.net>2023-09-14 10:03:15 +0200
commit9c083f3ebf78b13388097a35d8dc4bfb662484bb (patch)
treee001d495694e618abfacc87365032d47a2e3fe78
parent6daa25cc6f59eb11eeb0bfb6b40e912fdd3ae873 (diff)
fix test suiteHEADmaster
-rw-r--r--php-pecl-quickhash.spec13
1 files changed, 8 insertions, 5 deletions
diff --git a/php-pecl-quickhash.spec b/php-pecl-quickhash.spec
index 12a691e..dc3bcdf 100644
--- a/php-pecl-quickhash.spec
+++ b/php-pecl-quickhash.spec
@@ -17,7 +17,7 @@
Summary: Set of specific strongly-typed classes for sets and hashing
Name: %{?scl_prefix}php-pecl-%{pecl_name}
Version: 1.1.1
-Release: 2%{?dist}%{!?nophptag:%(%{__php} -r 'echo ".".PHP_MAJOR_VERSION.".".PHP_MINOR_VERSION;')}
+Release: 3%{?dist}%{!?nophptag:%(%{__php} -r 'echo ".".PHP_MAJOR_VERSION.".".PHP_MINOR_VERSION;')}
License: PHP-3.01
Group: Development/Languages
URL: https://pecl.php.net/package/%{pecl_name}
@@ -135,14 +135,14 @@ fi
%check
: Minimal load test for NTS extension
%{__php} --no-php-ini \
- --define extension=../NTS/modules/%{pecl_name}.so \
- --modules | grep %{pecl_name}
+ --define extension=NTS/modules/%{pecl_name}.so \
+ --modules | grep '^%{pecl_name}$'
%if %{with_zts}
: Minimal load test for ZTS extension
%{__ztsphp} --no-php-ini \
- --define extension=../ZTS/modules/%{pecl_name}.so \
- --modules | grep %{pecl_name}
+ --define extension=ZTS/modules/%{pecl_name}.so \
+ --modules | grep '^%{pecl_name}$'
%endif
@@ -161,6 +161,9 @@ fi
%changelog
+* Thu Sep 14 2023 Remi Collet <remi@remirepo.net> - 1.1.1-3
+- fix test suite
+
* Fri Sep 1 2023 Remi Collet <remi@remirepo.net> - 1.1.1-2
- build out of sources tree