summaryrefslogtreecommitdiff
path: root/chromium/third_party/sqlite/sqlite-src-3240000/ext/session/sessionH.test
diff options
context:
space:
mode:
authorMichal Klocek <michal.klocek@qt.io>2018-12-19 15:12:30 +0100
committerMichal Klocek <michal.klocek@qt.io>2018-12-20 11:58:01 +0000
commit4010e56ec0c7929764779376d99c6b2eeb2cbe53 (patch)
tree6d19f194a9cd651482f75469969ea57888e1ff91 /chromium/third_party/sqlite/sqlite-src-3240000/ext/session/sessionH.test
parentf97a65ce1568d842d9a3eeaedd32bf46b45d9538 (diff)
downloadqtwebengine-chromium-4010e56ec0c7929764779376d99c6b2eeb2cbe53.tar.gz
Minor. Remove old src version of sqlite
Remove old sqlite source code to avoid future misreference (src is using currently sqlite-src-3250200) Task-number: QTBUG-72632 Change-Id: I0300f4ff1b458d4e35e5eb01cc10603fbcc042f8 Reviewed-by: Kai Koehne <kai.koehne@qt.io>
Diffstat (limited to 'chromium/third_party/sqlite/sqlite-src-3240000/ext/session/sessionH.test')
-rw-r--r--chromium/third_party/sqlite/sqlite-src-3240000/ext/session/sessionH.test39
1 files changed, 0 insertions, 39 deletions
diff --git a/chromium/third_party/sqlite/sqlite-src-3240000/ext/session/sessionH.test b/chromium/third_party/sqlite/sqlite-src-3240000/ext/session/sessionH.test
deleted file mode 100644
index 643fdb3fbe9..00000000000
--- a/chromium/third_party/sqlite/sqlite-src-3240000/ext/session/sessionH.test
+++ /dev/null
@@ -1,39 +0,0 @@
-# 2018 January 18
-#
-# 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.
-#
-#***********************************************************************
-#
-
-if {![info exists testdir]} {
- set testdir [file join [file dirname [info script]] .. .. test]
-}
-source [file join [file dirname [info script]] session_common.tcl]
-source $testdir/tester.tcl
-ifcapable !session {finish_test; return}
-set testprefix sessionH
-
-forcedelete test.db2
-sqlite3 db2 test.db2
-
-do_test 1.0 {
- do_common_sql {
- CREATE TABLE t1(a, b, c, PRIMARY KEY(a, b));
- }
- do_then_apply_sql {
- WITH s(i) AS (
- VALUES(1) UNION ALL SELECT i+1 FROM s WHERe i<10000
- )
- INSERT INTO t1 SELECT 'abcde', randomblob(16), i FROM s;
- }
- compare_db db db2
-} {}
-
-
-finish_test
-