summaryrefslogtreecommitdiffstats
path: root/third_party/sqlite/test/eval.test
diff options
context:
space:
mode:
authormdm@chromium.org <mdm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-09-18 18:27:25 +0000
committermdm@chromium.org <mdm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-09-18 18:27:25 +0000
commit997e22224e1062a4cd39373057a68879a1d7a3ac (patch)
treea90a9ce4272fc78f2459b1b2c78b52a3f6d4e5d3 /third_party/sqlite/test/eval.test
parent0d683c611a18dc6ea0e99f38c73b4fb96611041f (diff)
downloadchromium_src-997e22224e1062a4cd39373057a68879a1d7a3ac.zip
chromium_src-997e22224e1062a4cd39373057a68879a1d7a3ac.tar.gz
chromium_src-997e22224e1062a4cd39373057a68879a1d7a3ac.tar.bz2
Update sqlite to version 3.6.18, porting our patches.
Hopefully this will help to address some valgrind issues. BUG=none TEST=none git-svn-id: svn://svn.chromium.org/chrome/trunk/src@26596 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'third_party/sqlite/test/eval.test')
-rw-r--r--third_party/sqlite/test/eval.test6
1 files changed, 5 insertions, 1 deletions
diff --git a/third_party/sqlite/test/eval.test b/third_party/sqlite/test/eval.test
index 0f51b22..912dc82 100644
--- a/third_party/sqlite/test/eval.test
+++ b/third_party/sqlite/test/eval.test
@@ -13,7 +13,7 @@
# This file experiments with recursion using the "test_eval()" SQL function
# in order to make sure that SQLite is reentrant.
#
-# $Id: eval.test,v 1.1 2008/07/11 21:02:54 drh Exp $
+# $Id: eval.test,v 1.2 2008/10/13 10:37:50 danielk1977 Exp $
set testdir [file dirname $argv0]
source $testdir/tester.tcl
@@ -68,4 +68,8 @@ do_test eval-3.1 {
}
} {1 {} 102 2 {} 103 3 {} 104 4 {} 105}
+do_test eval-4.1 {
+ execsql { SELECT test_eval('SELECT "abcdefghij"') }
+} {abcdefghij}
+
finish_test