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

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

Issue 6990047: Import SQLite 3.7.6.3. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 7 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/capi3e.test ('k') | third_party/sqlite/src/test/coalesce.test » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/sqlite/src/test/check.test
diff --git a/third_party/sqlite/src/test/check.test b/third_party/sqlite/src/test/check.test
index 51ab1f31bacd1cc026abe457476bf0807046444a..d2867a096ebc588dc63cba3572682e1eae658822 100644
--- a/third_party/sqlite/src/test/check.test
+++ b/third_party/sqlite/src/test/check.test
@@ -239,43 +239,43 @@ do_test check-4.3 {
SELECT * FROM t4
}
} {4 3}
-do_test check-4.3 {
+do_test check-4.4 {
execsql {
UPDATE t4 SET x=12, y=2;
SELECT * FROM t4
}
} {12 2}
-do_test check-4.4 {
+do_test check-4.5 {
execsql {
UPDATE t4 SET x=12, y=-22;
SELECT * FROM t4
}
} {12 -22}
-do_test check-4.5 {
+do_test check-4.6 {
catchsql {
UPDATE t4 SET x=0, y=1;
}
} {1 {constraint failed}}
-do_test check-4.6 {
+do_test check-4.7 {
execsql {
SELECT * FROM t4;
}
} {12 -22}
-do_test check-4.7 {
+do_test check-4.8 {
execsql {
PRAGMA ignore_check_constraints=ON;
UPDATE t4 SET x=0, y=1;
SELECT * FROM t4;
}
} {0 1}
-do_test check-4.8 {
+do_test check-4.9 {
catchsql {
PRAGMA ignore_check_constraints=OFF;
UPDATE t4 SET x=0, y=2;
}
} {1 {constraint failed}}
ifcapable vacuum {
- do_test check_4.9 {
+ do_test check_4.10 {
catchsql {
VACUUM
}
« no previous file with comments | « third_party/sqlite/src/test/capi3e.test ('k') | third_party/sqlite/src/test/coalesce.test » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698