File: issue_14.t

package info (click to toggle)
memcached 1.4.5-1%2Bdeb6u1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 1,644 kB
  • ctags: 1,357
  • sloc: ansic: 8,329; sh: 3,977; perl: 3,343; xml: 1,594; makefile: 167
file content (34 lines) | stat: -rw-r--r-- 806 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#!/usr/bin/perl

use strict;
use Test::More tests => 21;
use FindBin qw($Bin);
use lib "$Bin/lib";
use MemcachedTest;

my $server = new_memcached();
my $sock = $server->sock;
my $value = "B"x66560;
my $key = 0;

for ($key = 0; $key < 10; $key++) {
    print $sock "set key$key 0 2 66560\r\n$value\r\n";
    is (scalar <$sock>, "STORED\r\n", "stored key$key");
}

#print $sock "stats slabs"
my $first_stats  = mem_stats($sock, "slabs");
my $first_malloc = $first_stats->{total_malloced};

sleep(4);

for ($key = 10; $key < 20; $key++) {
    print $sock "set key$key 0 2 66560\r\n$value\r\n";
    is (scalar <$sock>, "STORED\r\n", "stored key$key");
}

my $second_stats  = mem_stats($sock, "slabs");
my $second_malloc = $second_stats->{total_malloced};


is ($second_malloc, $first_malloc, "Memory grows..")