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

Unified Diff: third_party/sqlite/sqlite-src-3070603/test/init.test

Issue 949043002: Add //third_party/sqlite to dirs_to_snapshot, remove net_sql.patch (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: 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 side-by-side diff with in-line comments
Download patch
Index: third_party/sqlite/sqlite-src-3070603/test/init.test
diff --git a/third_party/sqlite/sqlite-src-3070603/test/init.test b/third_party/sqlite/sqlite-src-3070603/test/init.test
new file mode 100644
index 0000000000000000000000000000000000000000..7cb18f492ac142b7d1fccb89b3e7aba6b95b8abc
--- /dev/null
+++ b/third_party/sqlite/sqlite-src-3070603/test/init.test
@@ -0,0 +1,82 @@
+# 2001 September 15
+#
+# The author disclaims copyright to this source code. In place of
+# a legal notice, here is a blessing:
+#
+# May you do good and not evil.
+# May you find forgiveness for yourself and forgive others.
+# May you share freely, never taking more than you give.
+#
+#***********************************************************************
+#
+# This file implements regression tests for SQLite library. The
+# focus of this file is testing the effects of a failure in
+# sqlite3_initialize().
+#
+#
+
+set testdir [file dirname $argv0]
+source $testdir/tester.tcl
+if {[db eval {SELECT sqlite_compileoption_used('THREADSAFE=0')}]} {
+ finish_test
+ return
+}
+
+db close
+
+foreach {t failed rc started} {
+ 1.1 {} SQLITE_OK {mutex mem pcache}
+ 1.2 {mutex} SQLITE_ERROR {}
+ 1.3 {mem} SQLITE_ERROR {mutex}
+ 1.4 {pcache} SQLITE_ERROR {mutex mem}
+} {
+ do_test init-$t.1 {
+ eval init_wrapper_install $failed
+ sqlite3_initialize
+ } $rc
+ do_test init-$t.2 {
+ init_wrapper_query
+ } $started
+ do_test init-$t.3 {
+ sqlite3_shutdown
+ init_wrapper_query
+ } {}
+ do_test init-$t.4 {
+ sqlite3_initialize
+ } $rc
+ do_test init-$t.5 {
+ init_wrapper_query
+ } $started
+ do_test init-$t.6 {
+ init_wrapper_clear
+ sqlite3_initialize
+ } SQLITE_OK
+ do_test init-$t.7 {
+ init_wrapper_query
+ } {mutex mem pcache}
+ do_test init-$t.8 {
+ init_wrapper_uninstall
+ } {}
+}
+
+source $testdir/malloc_common.tcl
+if {$MEMDEBUG} {
+ do_malloc_test init-2 -tclprep {
+ db close
+ init_wrapper_install
+ } -tclbody {
+ set rc [sqlite3_initialize]
+ if {[string match "SQLITE*NOMEM" $rc]} {error "out of memory"}
+ } -cleanup {
+ set zRepeat "transient"
+ if {$::iRepeat} {set zRepeat "persistent"}
+ do_test init-2.$zRepeat.$::n.x {
+ init_wrapper_clear
+ sqlite3_initialize
+ } SQLITE_OK
+ init_wrapper_uninstall
+ }
+}
+
+autoinstall_test_functions
+finish_test
« no previous file with comments | « third_party/sqlite/sqlite-src-3070603/test/indexedby.test ('k') | third_party/sqlite/sqlite-src-3070603/test/insert.test » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698