This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Re: [perl #39126] possible memory related bug when using sprintf with an utf-8 encode...
[perl5.git] / t / op / time.t
CommitLineData
8d063cd8
LW
1#!./perl
2
26575770
MS
3if ( $does_gmtime = gmtime(time) ) {
4 print "1..7\n"
5}
6else {
7 print "1..4\n"
8}
9
10
11my $test = 1;
12sub ok ($$) {
13 my($ok, $name) = @_;
14
15 # You have to do it this way or VMS will get confused.
16 print $ok ? "ok $test - $name\n" : "not ok $test - $name\n";
17
18 printf "# Failed test at line %d\n", (caller)[2] unless $ok;
19
20 $test++;
21 return $ok;
22}
23
8d063cd8
LW
24
25($beguser,$begsys) = times;
26
27$beg = time;
28
463ee0b2 29while (($now = time) == $beg) { sleep 1 }
8d063cd8 30
26575770 31ok($now > $beg && $now - $beg < 10, 'very basic time test');
8d063cd8 32
5f80d426 33for ($i = 0; $i < 1_000_000; $i++) {
8d063cd8 34 ($nowuser, $nowsys) = times;
5f80d426 35 $i = 2_000_000 if $nowuser > $beguser && ( $nowsys >= $begsys ||
a0d0e21e 36 (!$nowsys && !$begsys));
8d063cd8
LW
37 last if time - $beg > 20;
38}
39
5f80d426 40ok($i >= 2_000_000, 'very basic times test');
8d063cd8
LW
41
42($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime($beg);
43($xsec,$foo) = localtime($now);
44$localyday = $yday;
45
26575770
MS
46ok($sec != $xsec && $mday && $year, 'localtime() list context');
47
48ok(localtime() =~ /^(Sun|Mon|Tue|Wed|Thu|Fri|Sat)[ ]
49 (Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)[ ]
50 ([ \d]\d)\ (\d\d):(\d\d):(\d\d)\ (\d{4})$
51 /x,
52 'localtime(), scalar context'
53 );
8d063cd8 54
a0d0e21e
LW
55exit 0 unless $does_gmtime;
56
8d063cd8
LW
57($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = gmtime($beg);
58($xsec,$foo) = localtime($now);
59
26575770
MS
60ok($sec != $xsec && $mday && $year, 'gmtime() list context');
61
62my $day_diff = $localyday - $yday;
63ok( grep({ $day_diff == $_ } (0, 1, -1, 364, 365, -364, -365)),
64 'gmtime() and localtime() agree what day of year');
8d063cd8 65
f5a29b03
RB
66
67# This could be stricter.
26575770
MS
68ok(gmtime() =~ /^(Sun|Mon|Tue|Wed|Thu|Fri|Sat)[ ]
69 (Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)[ ]
70 ([ \d]\d)\ (\d\d):(\d\d):(\d\d)\ (\d{4})$
71 /x,
72 'gmtime(), scalar context'
73 );