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

Unified Diff: third_party/sqlite/src/test/tkt3929.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/tkt3922.test ('k') | third_party/sqlite/src/test/tkt3935.test » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/sqlite/src/test/tkt3929.test
diff --git a/third_party/sqlite/src/test/tkt3929.test b/third_party/sqlite/src/test/tkt3929.test
new file mode 100644
index 0000000000000000000000000000000000000000..3ed4d288c4ca53e31e4b2c2a308539d3c38dcd0e
--- /dev/null
+++ b/third_party/sqlite/src/test/tkt3929.test
@@ -0,0 +1,53 @@
+# 2009 June 23
+#
+# 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.
+#
+#***********************************************************************
+#
+# Tests to verify ticket #3929 is fixed.
+#
+# $Id: tkt3929.test,v 1.1 2009/06/23 11:53:09 danielk1977 Exp $
+
+set testdir [file dirname $argv0]
+source $testdir/tester.tcl
+ifcapable {!trigger} {
+ finish_test
+ return
+}
+
+do_test tkt3929-1.0 {
+ execsql {
+ PRAGMA page_size = 1024;
+ CREATE TABLE t1(a, b);
+ CREATE INDEX i1 ON t1(a, b);
+ CREATE TRIGGER t1_t1 AFTER INSERT ON t1 BEGIN
+ UPDATE t1 SET b = 'value: ' || a WHERE t1.rowid = new.rowid;
+ END;
+ }
+} {}
+
+do_test tkt3929-1.1 {
+ execsql {
+ INSERT INTO t1(a) VALUES(1);
+ INSERT INTO t1(a) VALUES(2);
+ SELECT * FROM t1;
+ }
+} {1 {value: 1} 2 {value: 2}}
+
+# Before it was fixed, the following provoked the bug, causing either an
+# assertion failure or a "database is malformed" error.
+#
+do_test tkt3930-1.2 {
+ for {set i 3} {$i < 100} {incr i} {
+ execsql { INSERT INTO t1(a) VALUES($i) }
+ }
+} {}
+
+integrity_check tkt3930-1.3
+finish_test
+
« no previous file with comments | « third_party/sqlite/src/test/tkt3922.test ('k') | third_party/sqlite/src/test/tkt3935.test » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698