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

Unified Diff: third_party/sqlite/sqlite-src-3080704/test/trans3.test

Issue 2363173002: [sqlite] Remove obsolete reference version 3.8.7.4. (Closed)
Patch Set: Created 4 years, 3 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-3080704/test/trans3.test
diff --git a/third_party/sqlite/sqlite-src-3080704/test/trans3.test b/third_party/sqlite/sqlite-src-3080704/test/trans3.test
deleted file mode 100644
index e82844241580d83369c210d104af4fa34a2cec55..0000000000000000000000000000000000000000
--- a/third_party/sqlite/sqlite-src-3080704/test/trans3.test
+++ /dev/null
@@ -1,76 +0,0 @@
-# 2008 November 3
-#
-# 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 script is the response of COMMIT and ROLLBACK when
-# statements are still pending.
-#
-# $Id: trans3.test,v 1.2 2008/11/05 16:37:35 drh Exp $
-#
-set testdir [file dirname $argv0]
-source $testdir/tester.tcl
-unset -nocomplain ecode
-
-do_test trans3-1.1 {
- db eval {
- CREATE TABLE t1(x);
- INSERT INTO t1 VALUES(1);
- INSERT INTO t1 VALUES(2);
- INSERT INTO t1 VALUES(3);
- SELECT * FROM t1;
- }
-} {1 2 3}
-do_test trans3-1.2 {
- db eval BEGIN
- db eval {INSERT INTO t1 VALUES(4);}
- set ::ecode {}
- set x [catch {
- db eval {SELECT * FROM t1 LIMIT 1} {
- if {[catch {db eval COMMIT} errmsg]} {
- set ::ecode [sqlite3_extended_errcode db]
- error $errmsg
- }
- }
- } errmsg]
- lappend x $errmsg
-} {0 {}}
-do_test trans3-1.3 {
- set ::ecode
-} {}
-do_test trans3-1.3.1 {
- sqlite3_get_autocommit db
-} 1
-do_test trans3-1.4 {
- db eval {SELECT * FROM t1}
-} {1 2 3 4}
-do_test trans3-1.5 {
- db eval {BEGIN; CREATE TABLE xyzzy(abc);}
- db eval {INSERT INTO t1 VALUES(5);}
- set ::ecode {}
- set x [catch {
- db eval {SELECT * FROM t1} {
- if {[catch {db eval ROLLBACK} errmsg]} {
- set ::ecode [sqlite3_extended_errcode db]
- error $errmsg
- }
- }
- } errmsg]
- lappend x $errmsg
-} {1 {abort due to ROLLBACK}}
-do_test trans3-1.6 {
- set ::ecode
-} {}
-do_test trans3-1.7 {
- db eval {SELECT * FROM t1}
-} {1 2 3 4}
-unset -nocomplain ecode
-
-finish_test
« no previous file with comments | « third_party/sqlite/sqlite-src-3080704/test/trans2.test ('k') | third_party/sqlite/sqlite-src-3080704/test/transitive1.test » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698