diff options
-rw-r--r-- | memcached.spec | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/memcached.spec b/memcached.spec index c5517d6..51109c9 100644 --- a/memcached.spec +++ b/memcached.spec @@ -19,11 +19,11 @@ %global with_sasl 1 -# Regression tests take a long time, you can skip 'em with this -%{!?runselftest: %global runselftest 1} +# disable testing as it is unreliable on build systems +%global with_tests %{?_with_tests:1}%{!?_with_tests:0} Name: memcached -Version: 1.4.39 +Version: 1.5.0 Release: 1%{?dist} Epoch: 0 Summary: High Performance, Distributed Memory Object Cache @@ -103,9 +103,11 @@ sed -i 's/-Werror / /' Makefile make %{?_smp_mflags} -%if %runselftest %check +%if %{with_tests} make test +%else +: test suite disabled %endif @@ -237,6 +239,10 @@ fi %changelog +* Tue Aug 1 2017 Remi Collet <remi@remirepo.net> - 0:1.5.0-1 +- Update to 1.5.0 +- skip test suite which is unreliable on build system (see fedora) + * Wed Jul 5 2017 Remi Collet <remi@remirepo.net> - 0:1.4.39-1 - Update to 1.4.39 (security) |