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

Unified Diff: third_party/sqlite/sqlite-src-3100200/test/analyzer1.test

Issue 2846743003: [sql] Remove SQLite 3.10.2 reference directory. (Closed)
Patch Set: Created 3 years, 8 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-3100200/test/analyzer1.test
diff --git a/third_party/sqlite/sqlite-src-3100200/test/analyzer1.test b/third_party/sqlite/sqlite-src-3100200/test/analyzer1.test
deleted file mode 100644
index ac46704fbafe49e6400e9e56073debe63d62db9d..0000000000000000000000000000000000000000
--- a/third_party/sqlite/sqlite-src-3100200/test/analyzer1.test
+++ /dev/null
@@ -1,52 +0,0 @@
-# 2015-05-11
-#
-# 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.
-#
-#***********************************************************************
-#
-# Quick tests for the sqlite3_analyzer tool
-#
-set testdir [file dirname $argv0]
-source $testdir/tester.tcl
-
-ifcapable !vtab {
- finish_test
- return
-}
-
-if {$tcl_platform(platform)=="windows"} {
- set PROG "sqlite3_analyzer.exe"
-} else {
- set PROG "./sqlite3_analyzer"
-}
-if {![file exe $PROG]} {
- puts "analyzer1 cannot run because $PROG is not available"
- finish_test
- return
-}
-db close
-forcedelete test.db test.db-journal test.db-wal
-sqlite3 db test.db
-
-do_test analyzer1-1.0 {
- db eval {
- CREATE TABLE t1(a INTEGER PRIMARY KEY, b);
- CREATE TABLE t2(a INT PRIMARY KEY, b) WITHOUT ROWID;
- WITH RECURSIVE c(x) AS (VALUES(1) UNION ALL SELECT x+1 FROM c WHERE x<250)
- INSERT INTO t1(a,b) SELECT x, randomblob(200) FROM c;
- INSERT INTO t2(a,b) SELECT a, b FROM t1;
- }
- set line "exec $PROG test.db"
- unset -nocomplain ::MSG
- catch {eval $line} ::MSG
-} {0}
-do_test analyzer1-1.1 {
- regexp {^/\*\* Disk-Space Utilization.*COMMIT;\W*$} $::MSG
-} {1}
-
-finish_test
« no previous file with comments | « third_party/sqlite/sqlite-src-3100200/test/analyzeF.test ('k') | third_party/sqlite/sqlite-src-3100200/test/async.test » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698