aboutsummaryrefslogtreecommitdiff
path: root/test/timeout1.t
blob: 9ce8f49a7bec6fa22acd69db04d51014bcb80acb (plain) (blame)
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
#!/usr/bin/perl

use strict;
use Test::Simple tests => 1;

use Time::HiRes qw(gettimeofday tv_interval);
use Net::PSYC qw(:event setDEBUG);

my $c = 0;
my ($f, $s1, $m1);

sub t {
    $c++;

    if ($c == 3) {
	ok(1, 'Timeout events.');
	stop_loop();
    }
}

add(1, 'i', \&t);
print "!\tIf nothing happens for more than 5 seconds,\n!\tterminate the test and report the failure!\n";
start_loop();

__END__