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

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

Issue 1610543003: [sql] Import reference version of SQLite 3.10.2. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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/spellfix3.test
diff --git a/third_party/sqlite/sqlite-src-3100200/test/spellfix3.test b/third_party/sqlite/sqlite-src-3100200/test/spellfix3.test
new file mode 100644
index 0000000000000000000000000000000000000000..ce002edd4fb0316eab9f591b471783f97dc7d7fe
--- /dev/null
+++ b/third_party/sqlite/sqlite-src-3100200/test/spellfix3.test
@@ -0,0 +1,43 @@
+# 2015-12-17
+#
+# 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.
+#
+#***********************************************************************
+#
+
+set testdir [file dirname $argv0]
+source $testdir/tester.tcl
+set testprefix spellfix3
+
+ifcapable !vtab { finish_test ; return }
+
+load_static_extension db spellfix
+
+do_execsql_test 100 {
+ SELECT spellfix1_scriptcode('And God said, “Let there be light”');
+} {215}
+do_execsql_test 110 {
+ SELECT spellfix1_scriptcode('Бог сказал: "Да будет свет"');
+} {220}
+do_execsql_test 120 {
+ SELECT spellfix1_scriptcode('και ειπεν ο θεος γενηθητω φως και εγενετο φως');
+} {200}
+do_execsql_test 130 {
+ SELECT spellfix1_scriptcode('וַיֹּ֥אמֶר אֱלֹהִ֖ים יְהִ֣י א֑וֹר וַֽיְהִי־אֽוֹר׃');
+} {125}
+do_execsql_test 140 {
+ SELECT spellfix1_scriptcode('فِي ذَلِكَ الوَقتِ، قالَ اللهُ: لِيَكُنْ نُورٌ. فَصَارَ نُورٌ.');
+} {160}
+do_execsql_test 200 {
+ SELECT spellfix1_scriptcode('+3.14159');
+} {999}
+do_execsql_test 210 {
+ SELECT spellfix1_scriptcode('And God said: "Да будет свет"');
+} {998}
+
+finish_test
« no previous file with comments | « third_party/sqlite/sqlite-src-3100200/test/spellfix2.test ('k') | third_party/sqlite/sqlite-src-3100200/test/sqldiff1.test » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698