From 036084ae69eab1a96ae3da0b567f7ccd82c2dad3 Mon Sep 17 00:00:00 2001 From: "D. Richard Hipp" Date: Sat, 20 Jan 2024 16:38:00 +0000 Subject: [PATCH] Make sure that %V and %G are testing for every since day in between 1970-01-01 and 2023-01-19. --- test/date4.test | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/date4.test b/test/date4.test index 0dd06debb7..56a9090b1b 100644 --- a/test/date4.test +++ b/test/date4.test @@ -28,8 +28,8 @@ if {$tcl_platform(os)=="Linux"} { } else { set FMT {%d,%e,%F,%H,%I,%j,%p,%R,%u,%w,%W,%%} } -for {set i 0} {$i<=24854} {incr i} { - set TS [expr {$i*86401}] +for {set i 0} {$i<=24858} {incr i} { + set TS [expr {$i*86390}] do_execsql_test date4-$i { SELECT strftime($::FMT,$::TS,'unixepoch'); } [list [strftime $FMT $TS]] -- 2.11.4.GIT