summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordormando <dormando@rydia.net>2011-11-09 15:45:31 -0800
committerdormando <dormando@rydia.net>2011-11-09 16:06:08 -0800
commit7bc93a6bf148cf7e0251cedffb2d87a44d1ea51e (patch)
treeedac6a5ac1d0f47040bffec50f461d4578033339
parent97409b31af844e0ae8c9b2498276af8094151389 (diff)
downloadmemcached-7bc93a6bf148cf7e0251cedffb2d87a44d1ea51e.tar.gz
disable issue 140's test.1.4.10
the fix for issue 140 only helped in the case of you poking at memcached with a handful of items (or this particular test). On real instances you could easily exhaust the 50 item search and still come up with a crap item. It was removed because adding the proper locks back in that place is difficult, and it makes "stats items" take longer in a gross lock anyway.
-rw-r--r--t/issue_140.t6
1 files changed, 5 insertions, 1 deletions
diff --git a/t/issue_140.t b/t/issue_140.t
index 3923d89..16eac3d 100644
--- a/t/issue_140.t
+++ b/t/issue_140.t
@@ -1,11 +1,15 @@
#!/usr/bin/perl
use strict;
-use Test::More tests => 7;
+use Test::More;
use FindBin qw($Bin);
use lib "$Bin/lib";
use MemcachedTest;
+plan skip_all => 'Fix for Issue 140 was only an illusion';
+
+plan tests => 7;
+
my $server = new_memcached();
my $sock = $server->sock;