Commit | Line | Data |
---|---|---|
90e44bf6 Z |
1 | use strict; |
2 | ||
3 | sub has_symbol { | |
4 | my $symbol = shift; | |
5 | eval "use Time::HiRes qw($symbol)"; | |
6 | return 0 unless $@ eq ''; | |
7 | eval "my \$a = $symbol"; | |
8 | return $@ eq ''; | |
9 | } | |
10 | ||
11 | use Config; | |
12 | ||
13 | BEGIN { | |
14 | require Time::HiRes; | |
15 | unless(defined &Time::HiRes::setitimer | |
16 | && defined &Time::HiRes::getitimer | |
17 | && has_symbol('ITIMER_VIRTUAL') | |
18 | && $Config{sig_name} =~ m/\bVTALRM\b/ | |
19 | && $^O ne 'nto' # nto: QNX 6 has the API but no implementation | |
20 | && $^O ne 'haiku' # haiku: has the API but no implementation | |
858dcda5 | 21 | && $^O ne 'gnu' # GNU/Hurd: has the API but no implementation |
90e44bf6 Z |
22 | ) { |
23 | require Test::More; | |
24 | Test::More::plan(skip_all => "no itimer"); | |
25 | } | |
26 | } | |
27 | ||
28 | use Test::More 0.82 tests => 2; | |
29 | use t::Watchdog; | |
30 | ||
31 | my $limit = 0.25; # 25% is acceptable slosh for testing timers | |
32 | ||
33 | my $i = 3; | |
34 | my $r = [Time::HiRes::gettimeofday()]; | |
35 | ||
36 | $SIG{VTALRM} = sub { | |
37 | $i ? $i-- : Time::HiRes::setitimer(&Time::HiRes::ITIMER_VIRTUAL, 0); | |
38 | note "Tick! $i ", Time::HiRes::tv_interval($r); | |
39 | }; | |
40 | ||
41 | note "setitimer: ", join(" ", | |
42 | Time::HiRes::setitimer(&Time::HiRes::ITIMER_VIRTUAL, 0.5, 0.4)); | |
43 | ||
44 | # Assume interval timer granularity of $limit * 0.5 seconds. Too bold? | |
45 | my $virt = Time::HiRes::getitimer(&Time::HiRes::ITIMER_VIRTUAL); | |
9161a53d | 46 | ok defined $virt && abs($virt / 0.5) - 1 < $limit; |
90e44bf6 Z |
47 | |
48 | note "getitimer: ", join(" ", | |
49 | Time::HiRes::getitimer(&Time::HiRes::ITIMER_VIRTUAL)); | |
50 | ||
51 | while (Time::HiRes::getitimer(&Time::HiRes::ITIMER_VIRTUAL)) { | |
52 | my $j; | |
53 | for (1..1000) { $j++ } # Can't be unbreakable, must test getitimer(). | |
54 | } | |
55 | ||
56 | note "getitimer: ", join(" ", | |
57 | Time::HiRes::getitimer(&Time::HiRes::ITIMER_VIRTUAL)); | |
58 | ||
59 | $virt = Time::HiRes::getitimer(&Time::HiRes::ITIMER_VIRTUAL); | |
9161a53d | 60 | ok defined $virt && $virt == 0; |
90e44bf6 Z |
61 | |
62 | $SIG{VTALRM} = 'DEFAULT'; | |
63 | ||
64 | 1; |