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

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

Issue 694353003: Get `gn gen` to succeed on Windows (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: remove GYP_DEFINES code Created 6 years, 1 month 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/shared6.test ('k') | third_party/sqlite/src/test/shared_err.test » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/sqlite/src/test/shared7.test
diff --git a/third_party/sqlite/src/test/shared7.test b/third_party/sqlite/src/test/shared7.test
new file mode 100644
index 0000000000000000000000000000000000000000..d003f0aee3ed6d114e1f3446b7718d349abc5d59
--- /dev/null
+++ b/third_party/sqlite/src/test/shared7.test
@@ -0,0 +1,55 @@
+# 2009 April 30
+#
+# 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.
+#
+#***********************************************************************
+#
+# Make sure that attaching the same database multiple times in
+# shared cache mode fails.
+#
+# $Id: shared7.test,v 1.1 2009/04/30 13:30:33 drh Exp $
+
+set testdir [file dirname $argv0]
+source $testdir/tester.tcl
+ifcapable !shared_cache { finish_test ; return }
+
+do_test shared7-1.1 {
+ set ::enable_shared_cache [sqlite3_enable_shared_cache 1]
+ sqlite3_enable_shared_cache
+} {1}
+
+do_test shared7-1.2 {
+ db close
+ sqlite3 db test.db
+ db eval {
+ CREATE TABLE t1(x);
+ }
+ catchsql {
+ ATTACH 'test.db' AS err1;
+ }
+} {1 {database is already attached}}
+
+do_test shared7-1.3 {
+ file delete -force test2.db test2.db-journal
+ db eval {
+ ATTACH 'test2.db' AS test2;
+ CREATE TABLE test2.t2(y);
+ }
+ catchsql {
+ ATTACH 'test2.db' AS err2;
+ }
+} {1 {database is already attached}}
+do_test shared7-1.4 {
+ catchsql {
+ ATTACH 'test.db' AS err1;
+ }
+} {1 {database is already attached}}
+
+
+sqlite3_enable_shared_cache $::enable_shared_cache
+finish_test
« no previous file with comments | « third_party/sqlite/src/test/shared6.test ('k') | third_party/sqlite/src/test/shared_err.test » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698