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

Unified Diff: third_party/sqlite/src/test/win32nolock.test

Issue 2751253002: [sql] Import SQLite 3.17.0. (Closed)
Patch Set: also clang on Linux i386 Created 3 years, 9 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
« no previous file with comments | « third_party/sqlite/src/test/wherefault.test ('k') | third_party/sqlite/src/test/with3.test » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/sqlite/src/test/win32nolock.test
diff --git a/third_party/sqlite/src/test/win32nolock.test b/third_party/sqlite/src/test/win32nolock.test
new file mode 100644
index 0000000000000000000000000000000000000000..8128860392f762072c6aca6e88de0cb40eabd5a6
--- /dev/null
+++ b/third_party/sqlite/src/test/win32nolock.test
@@ -0,0 +1,126 @@
+# 2016 July 8
+#
+# 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.
+#
+
+if {$tcl_platform(platform)!="windows"} return
+
+set testdir [file dirname $argv0]
+source $testdir/tester.tcl
+set testprefix win32nolock
+
+do_test win32nolock-1.0 {
+ sqlite3 db test.db
+ execsql {
+ CREATE TABLE t1(a, b);
+ BEGIN;
+ INSERT INTO t1 VALUES(1, 2);
+ }
+} {}
+
+do_test win32nolock-1.1 {
+ execsql COMMIT
+ catchsql { SELECT * FROM t1 }
+} {0 {1 2}}
+
+db close
+
+do_test win32nolock-1.2 {
+ sqlite3 db test.db -vfs win32-none
+ sqlite3 db2 test.db -vfs win32-none
+ execsql { PRAGMA mmap_size = 0 } db2
+ execsql {
+ BEGIN;
+ INSERT INTO t1 VALUES(3, 4);
+ }
+} {}
+
+do_test win32nolock-1.3 {
+ execsql { SELECT * FROM t1 }
+} {1 2 3 4}
+
+do_test win32nolock-1.4 {
+ execsql { SELECT * FROM t1; } db2
+} {1 2}
+
+do_test win32nolock-1.5 {
+ execsql {
+ BEGIN;
+ SELECT * FROM t1;
+ } db2
+} {1 2}
+
+do_test win32nolock-1.6 {
+ execsql COMMIT
+ execsql {SELECT * FROM t1} db2
+} {1 2}
+
+ifcapable memorymanage {
+ do_test win32nolock-1.7 {
+ sqlite3_release_memory 1000000
+ execsql {SELECT * FROM t1} db2
+ } {1 2 3 4}
+}
+
+do_test win32nolock-1.8 {
+ db close
+ db2 close
+} {}
+
+do_test win32nolock-1.9.1 {
+ sqlite3 db test.db
+ sqlite3 db2 test.db
+ list [catchsql { BEGIN EXCLUSIVE; } db] \
+ [catchsql { BEGIN EXCLUSIVE; } db2]
+} {{0 {}} {1 {database is locked}}}
+
+do_test win32nolock-1.9.2 {
+ db close
+ db2 close
+} {}
+
+do_test win32nolock-1.10.1 {
+ sqlite3 db test.db -vfs win32-none
+ sqlite3 db2 test.db
+ list [catchsql { BEGIN EXCLUSIVE; } db] \
+ [catchsql { BEGIN EXCLUSIVE; } db2]
+} {{0 {}} {0 {}}}
+
+do_test win32nolock-1.10.2 {
+ db close
+ db2 close
+} {}
+
+do_test win32nolock-1.11.1 {
+ sqlite3 db test.db
+ sqlite3 db2 test.db -vfs win32-none
+ list [catchsql { BEGIN EXCLUSIVE; } db] \
+ [catchsql { BEGIN EXCLUSIVE; } db2]
+} {{0 {}} {0 {}}}
+
+do_test win32nolock-1.11.2 {
+ db close
+ db2 close
+} {}
+
+do_test win32nolock-1.12.1 {
+ sqlite3 db test.db -vfs win32-none
+ sqlite3 db2 test.db -vfs win32-none
+ list [catchsql { BEGIN EXCLUSIVE; } db] \
+ [catchsql { BEGIN EXCLUSIVE; } db2]
+} {{0 {}} {0 {}}}
+
+do_test win32nolock-1.12.2 {
+ db close
+ db2 close
+} {}
+
+finish_test
« no previous file with comments | « third_party/sqlite/src/test/wherefault.test ('k') | third_party/sqlite/src/test/with3.test » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698