From 9c083f3ebf78b13388097a35d8dc4bfb662484bb Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Thu, 14 Sep 2023 10:03:15 +0200 Subject: fix test suite --- php-pecl-quickhash.spec | 13 ++++++++----- 1 file 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 - 1.1.1-3 +- fix test suite + * Fri Sep 1 2023 Remi Collet - 1.1.1-2 - build out of sources tree -- cgit