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

Unified Diff: third_party/sqlite/sqlite-src-3100200/ext/fts5/test/fts5unicode3.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/ext/fts5/test/fts5unicode3.test
diff --git a/third_party/sqlite/sqlite-src-3100200/ext/fts5/test/fts5unicode3.test b/third_party/sqlite/sqlite-src-3100200/ext/fts5/test/fts5unicode3.test
deleted file mode 100644
index 876ad27461f323a071d6574b6120756fb0456d4a..0000000000000000000000000000000000000000
--- a/third_party/sqlite/sqlite-src-3100200/ext/fts5/test/fts5unicode3.test
+++ /dev/null
@@ -1,129 +0,0 @@
-# 2014 Dec 20
-#
-# 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 focusing on the fts5 tokenizers
-#
-
-source [file join [file dirname [info script]] fts5_common.tcl]
-
-# If SQLITE_ENABLE_FTS5 is defined, omit this file.
-ifcapable !fts5 {
- finish_test
- return
-}
-
-proc fts3_unicode_path {file} {
- file join [file dirname [info script]] .. .. fts3 unicode $file
-}
-
-source [fts3_unicode_path parseunicode.tcl]
-set testprefix fts5unicode3
-
-set CF [fts3_unicode_path CaseFolding.txt]
-set UD [fts3_unicode_path UnicodeData.txt]
-
-tl_load_casefolding_txt $CF
-foreach x [an_load_unicodedata_text $UD] {
- set aNotAlnum($x) 1
-}
-
-foreach {y} [rd_load_unicodedata_text $UD] {
- foreach {code ascii} $y {}
- if {$ascii==""} {
- set int 0
- } else {
- binary scan $ascii c int
- }
- set aDiacritic($code) $int
-}
-
-proc tcl_fold {i {bRemoveDiacritic 0}} {
- global tl_lookup_table
- global aDiacritic
-
- if {[info exists tl_lookup_table($i)]} {
- set i $tl_lookup_table($i)
- }
- if {$bRemoveDiacritic && [info exists aDiacritic($i)]} {
- set i $aDiacritic($i)
- }
- expr $i
-}
-db func tcl_fold tcl_fold
-
-proc tcl_isalnum {i} {
- global aNotAlnum
- expr {![info exists aNotAlnum($i)]}
-}
-db func tcl_isalnum tcl_isalnum
-
-
-do_catchsql_test 1.0.1 {
- SELECT fts5_isalnum(1, 2, 3);
-} {1 {wrong number of arguments to function fts5_isalnum}}
-do_catchsql_test 1.0.2 {
- SELECT fts5_fold();
-} {1 {wrong number of arguments to function fts5_fold}}
-do_catchsql_test 1.0.3 {
- SELECT fts5_fold(1,2,3);
-} {1 {wrong number of arguments to function fts5_fold}}
-
-do_execsql_test 1.1 {
- WITH ii(i) AS (
- SELECT -1
- UNION ALL
- SELECT i+1 FROM ii WHERE i<100000
- )
- SELECT count(*), min(i) FROM ii WHERE fts5_fold(i)!=CAST(tcl_fold(i) AS int);
-} {0 {}}
-
-do_execsql_test 1.2 {
- WITH ii(i) AS (
- SELECT -1
- UNION ALL
- SELECT i+1 FROM ii WHERE i<100000
- )
- SELECT count(*), min(i) FROM ii
- WHERE fts5_fold(i,1)!=CAST(tcl_fold(i,1) AS int);
-} {0 {}}
-
-do_execsql_test 1.3 {
- WITH ii(i) AS (
- SELECT -1
- UNION ALL
- SELECT i+1 FROM ii WHERE i<100000
- )
- SELECT count(*), min(i) FROM ii
- WHERE fts5_isalnum(i)!=CAST(tcl_isalnum(i) AS int);
-} {0 {}}
-
-do_test 1.4 {
- set str {CREATE VIRTUAL TABLE f3 USING fts5(a, tokenize=}
- append str {"unicode61 separators '}
- for {set i 700} {$i<900} {incr i} {
- append str [format %c $i]
- }
- append str {'");}
- execsql $str
-} {}
-do_test 1.5 {
- set str {CREATE VIRTUAL TABLE f5 USING fts5(a, tokenize=}
- append str {"unicode61 tokenchars '}
- for {set i 700} {$i<900} {incr i} {
- append str [format %c $i]
- }
- append str {'");}
- execsql $str
-} {}
-
-
-finish_test
-

Powered by Google App Engine
This is Rietveld 408576698