Hello community,

here is the log from the commit of package memcached for openSUSE:Factory 
checked in at 2018-10-09 15:52:22
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/memcached (Old)
 and      /work/SRC/openSUSE:Factory/.memcached.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "memcached"

Tue Oct  9 15:52:22 2018 rev:41 rq:639766 version:1.5.10

Changes:
--------
--- /work/SRC/openSUSE:Factory/memcached/memcached.changes      2018-08-22 
14:20:14.134334989 +0200
+++ /work/SRC/openSUSE:Factory/.memcached.new/memcached.changes 2018-10-09 
15:53:07.294357069 +0200
@@ -1,0 +2,6 @@
+Wed Oct  3 11:52:39 UTC 2018 - Guillaume GARDET <guillaume.gar...@opensuse.org>
+
+- Add patch to fix aarch64, ppc64* and s390x tests:
+  * memcached-fix_test.patch
+
+-------------------------------------------------------------------

New:
----
  memcached-fix_test.patch

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ memcached.spec ++++++
--- /var/tmp/diff_new_pack.4jTvMv/_old  2018-10-09 15:53:08.306355871 +0200
+++ /var/tmp/diff_new_pack.4jTvMv/_new  2018-10-09 15:53:08.306355871 +0200
@@ -12,7 +12,7 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
@@ -35,6 +35,7 @@
 Patch0:         memcached-1.4.5.dif
 Patch1:         memcached-autofoo.patch
 Patch2:         memcached-use-endian_h.patch
+Patch3:         memcached-fix_test.patch
 BuildRequires:  autoconf
 BuildRequires:  automake
 BuildRequires:  cyrus-sasl-devel
@@ -82,6 +83,7 @@
 %patch0
 %patch1
 %patch2
+%patch3 -p1
 
 %build
 autoreconf -fi

++++++ memcached-fix_test.patch ++++++
>From b2b574ae46454d7016012bf8b40a2d24cd723e60 Mon Sep 17 00:00:00 2001
From: dormando <dorma...@rydia.net>
Date: Fri, 10 Aug 2018 15:31:22 -0700
Subject: [PATCH] t/lru-maintainer.t: check for WARM item earlier

item might get pushed back out as we keep doing work.
---
 t/lru-maintainer.t | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/t/lru-maintainer.t b/t/lru-maintainer.t
index 04fa76ac6..adacd1b48 100644
--- a/t/lru-maintainer.t
+++ b/t/lru-maintainer.t
@@ -68,6 +68,8 @@ for (my $key = 0; $key < 100; $key++) {
             }
             last;
         }
+        my $istats = mem_stats($sock, "items");
+        isnt($istats->{"items:31:number_warm"}, 0, "our canary moved to warm");
     }
     print $sock "set key$key 0 0 66560\r\n$value\r\n";
     is(scalar <$sock>, "STORED\r\n", "stored key$key");
@@ -76,8 +78,6 @@ for (my $key = 0; $key < 100; $key++) {
 {
     my $stats = mem_stats($sock);
     isnt($stats->{evictions}, 0, "some evictions happened");
-    my $istats = mem_stats($sock, "items");
-    isnt($istats->{"items:31:number_warm"}, 0, "our canary moved to warm");
     use Data::Dumper qw/Dumper/;
 }
 

Reply via email to