Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(172)

Side by Side Diff: third_party/sqlite/src/test/tkt-bd484a090c.test

Issue 901033002: Import SQLite 3.8.7.4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Chromium changes to support SQLite 3.8.7.4. Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 # 2011 June 21 1 # 2011 June 21
2 # 2 #
3 # May you do good and not evil. 3 # May you do good and not evil.
4 # May you find forgiveness for yourself and forgive others. 4 # May you find forgiveness for yourself and forgive others.
5 # May you share freely, never taking more than you give. 5 # May you share freely, never taking more than you give.
6 # 6 #
7 #*********************************************************************** 7 #***********************************************************************
8 # 8 #
9 # This file contains tests for SQLite. Specifically, it tests that SQLite 9 # This file contains tests for SQLite. Specifically, it tests that SQLite
10 # does not crash and an error is returned if localhost() fails. This 10 # does not crash and an error is returned if localhost() fails. This
(...skipping 18 matching lines...) Expand all
29 do_test 2.1 { 29 do_test 2.1 {
30 catchsql { SELECT datetime('now', 'localtime') } 30 catchsql { SELECT datetime('now', 'localtime') }
31 } {1 {local time unavailable}} 31 } {1 {local time unavailable}}
32 do_test 2.2 { 32 do_test 2.2 {
33 catchsql { SELECT datetime('now', 'utc') } 33 catchsql { SELECT datetime('now', 'utc') }
34 } {1 {local time unavailable}} 34 } {1 {local time unavailable}}
35 35
36 sqlite3_test_control SQLITE_TESTCTRL_LOCALTIME_FAULT 0 36 sqlite3_test_control SQLITE_TESTCTRL_LOCALTIME_FAULT 0
37 37
38 finish_test 38 finish_test
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698