We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f3ea84c commit a0972edCopy full SHA for a0972ed
ext/POSIX/t/time.t
@@ -268,6 +268,7 @@ SKIP: { # GH #23878: test that dst spring forward works properly; use a
268
# locale that MS narcissism should be able to handle
269
my $skip_count = 9;
270
skip "No mktime()", $skip_count if $Config{d_mktime} ne 'define';
271
+ $^D |= 0x04000000|0x00100000 ;
272
my $locale = "PST8PDT";
273
$ENV{TZ} = $locale;
274
print STDERR __FILE__, ": ", __LINE__, ": about to call tzset\n";
@@ -303,4 +304,5 @@ SKIP: { # GH #23878: test that dst spring forward works properly; use a
303
304
is(POSIX::strftime("%F %T%z", localtime $t + $spring[$i][0]),
305
$spring[$i][1], $spring[$i][2]);
306
}
307
+ $^D &= ~(67108864|1048576 );
308
0 commit comments