CoolFace
Modelpublic

AryaWu/sqlite

sourceHugging Faceupdated 9mo agoView on Hugging Face
0likes
tkt-bd484a090c.test39 linesDownload Raw Back to test
1# 2011 June 212#3#    May you do good and not evil.4#    May you find forgiveness for yourself and forgive others.5#    May you share freely, never taking more than you give.6#7#***********************************************************************8#9# This file contains tests for SQLite. Specifically, it tests that SQLite10# does not crash and an error is returned if localhost() fails. This 11# is the problem reported by ticket bd484a090c.12#13 14set testdir [file dirname $argv0]15source $testdir/tester.tcl16 17set testprefix tkt-bd484a090c18 19 20do_test 1.1 {21  lindex [catchsql { SELECT datetime('now', 'localtime') }] 022} {0}23do_test 1.2 {24  lindex [catchsql { SELECT datetime('now', 'utc') }] 025} {0}26 27sqlite3_test_control SQLITE_TESTCTRL_LOCALTIME_FAULT 128 29do_test 2.1 {30  catchsql { SELECT datetime('now', 'localtime') }31} {1 {local time unavailable}}32do_test 2.2 {33  catchsql { SELECT datetime('2000-01-01', 'utc') }34} {1 {local time unavailable}}35 36sqlite3_test_control SQLITE_TESTCTRL_LOCALTIME_FAULT 037 38finish_test39