removed process groups from the connection class child cleanup logic
[scpubgit/Object-Remote.git] / t / watchdog_fatnode.t
CommitLineData
f129bfaf 1use strictures 1;
2use Test::More;
3
abef6e5b 4$ENV{OBJECT_REMOTE_TEST_LOGGER} = 1;
f129bfaf 5
6use Object::Remote::Connector::Local;
7
8$SIG{ALRM} = sub { die "alarm signal\n" };
9
8faf2a28 10my $fatnode_text = Object::Remote::Connector::Local->new(timeout => 1)->fatnode_text;
f129bfaf 11
12#this simulates a node that has hung before it reaches
13#the watchdog initialization - it's an edge case that
14#could cause remote processes to not get cleaned up
15#if it's not handled right
16eval {
17 no warnings 'once';
f129bfaf 18 $Object::Remote::FatNode::INHIBIT_RUN_NODE = 1;
19 eval $fatnode_text;
20
21 if ($@) {
22 die "could not eval fatnode text: $@";
23 }
24
25 while(1) {
26 sleep(1);
27 }
28};
29
30is($@, "alarm signal\n", "Alarm handler was invoked");
31
32done_testing;
33