diff options
author | Dave Mitchell <davem@fdisolutions.com> | 2004-02-01 11:26:47 +0000 |
---|---|---|
committer | Dave Mitchell <davem@fdisolutions.com> | 2004-02-01 11:26:47 +0000 |
commit | b4c5c611165551aaef8a59a0e287e0f18687668b (patch) | |
tree | e95fdab488f87bf435700ff9a70d3a9471ef13f4 /ext/Time | |
parent | 0c2f6559512b2211f892f1a6ae8db4739c5369b4 (diff) | |
download | perl-b4c5c611165551aaef8a59a0e287e0f18687668b.tar.gz |
Make Time/HiRes/t/HiRes.t die more gracefully if its watchdog
timeout triggers
p4raw-id: //depot/perl@22253
Diffstat (limited to 'ext/Time')
-rw-r--r-- | ext/Time/HiRes/t/HiRes.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/Time/HiRes/t/HiRes.t b/ext/Time/HiRes/t/HiRes.t index 5e4128ee0c..6903970330 100644 --- a/ext/Time/HiRes/t/HiRes.t +++ b/ext/Time/HiRes/t/HiRes.t @@ -42,7 +42,7 @@ if ($have_fork) { if ($pid == 0) { # We are the kid, set up the timer. print "# Timer process $$\n"; sleep($waitfor); - warn "$0: Time's up!\n"; + warn "\n$0: overall time allowed for tests (${waitfor}s) exceeded\n"; print "# Terminating the testing process\n"; kill('TERM', getppid()); print "# Timer process exiting\n"; |