Blob Blame History Raw
commit 165a0e6b29c841c121bd20d3d6fc04e3110cbb68
Author: Tomas Korbar <tkorbar@redhat.com>
Date:   Thu May 21 08:42:02 2020 +0200

    Remove test which forces memcached to call abort
    
    We will disable this until suitable fix is found.

diff --git a/t/restart.t b/t/restart.t
index dde0b31..e22d38a 100644
--- a/t/restart.t
+++ b/t/restart.t
@@ -12,15 +12,6 @@ use MemcachedTest;
 # /dev/shm.
 my $mem_path = "/tmp/mc_restart.$$";
 
-# read a invalid metadata file
-{
-    my $meta_path = "$mem_path.meta";
-    open(my $f, "> $meta_path") || die("Can't open a metadata file.");
-    eval {  new_memcached("-e $mem_path"); };
-    unlink($meta_path);
-    ok($@, "Died with an empty metadata file");
-}
-
 my $server = new_memcached("-m 128 -e $mem_path -I 2m");
 my $sock = $server->sock;