diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-11-08 23:49:42 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-11-08 23:49:42 +0000 |
commit | 61a515a61510e728f2014674d12cb94cb5a90834 (patch) | |
tree | 3cea624b02b3b08364b5483805018060bfe340e4 | |
parent | b3c72391994409d4c0de25d67a0871d34a225923 (diff) | |
download | perl-61a515a61510e728f2014674d12cb94cb5a90834.tar.gz |
Test miscounting.
p4raw-id: //depot/perl@12908
-rw-r--r-- | ext/POSIX/t/posix.t | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/POSIX/t/posix.t b/ext/POSIX/t/posix.t index f862e0a27f..81c97e5961 100644 --- a/ext/POSIX/t/posix.t +++ b/ext/POSIX/t/posix.t @@ -143,7 +143,7 @@ ok( &POSIX::acos(1.0) == 0.0, 'dynamic loading' ); # didn't detect it. If this fails, try adding # -DSTRUCT_TM_HASZONE to your cflags when compiling ext/POSIX/POSIX.c. # See ext/POSIX/hints/sunos_4.pl and ext/POSIX/hints/linux.pl -print POSIX::strftime("ok 18 # %H:%M, on %D\n", localtime()); +print POSIX::strftime("ok 20 # %H:%M, on %D\n", localtime()); next_test(); # If that worked, validate the mini_mktime() routine's normalisation of @@ -151,7 +151,7 @@ next_test(); sub try_strftime { my $expect = shift; my $got = POSIX::strftime("%a %b %d %H:%M:%S %Y %j", @_); - is($got, $expect, 'validating mini_mktime() and strftime()'); + is($got, $expect, "validating mini_mktime() and strftime(): $expect"); } $lc = &POSIX::setlocale(&POSIX::LC_TIME, 'C') if $Config{d_setlocale}; |