File: maxconns.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 (26 lines) | stat: -rwxr-xr-x 453 bytes parent folder | download
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
#!/usr/bin/perl

use strict;
use warnings;

use Test::More tests => 11;

use FindBin qw($Bin);
use lib "$Bin/lib";
use MemcachedTest;


# start up a server with 10 maximum connections
my $server = new_memcached('-c 10');
my $sock = $server->sock;
my @sockets;

ok(defined($sock), 'Connection 0');
push (@sockets, $sock);


foreach my $conn (1..10) {
  $sock = $server->new_sock;
  ok(defined($sock), "Made connection $conn");
  push(@sockets, $sock);
}