aboutsummaryrefslogtreecommitdiff
path: root/test/expr.test
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2007-04-06 02:32:33 +0000
committerdrh <drh@noemail.net>2007-04-06 02:32:33 +0000
commit05f7c19a6e7374311ff7a2fd6be2e2aa21cba53c (patch)
tree027ffd482a82a426005a988e02446acd7d869692 /test/expr.test
parent77a2a5e73c5aa192514b467557f24ffd1792ca1c (diff)
downloadsqlite-05f7c19a6e7374311ff7a2fd6be2e2aa21cba53c.tar.gz
sqlite-05f7c19a6e7374311ff7a2fd6be2e2aa21cba53c.zip
Test coverage improvements. Over 90% of branches are now executed in
both directions. (CVS 3820) FossilOrigin-Name: a776d93ccae3bfa6e992cdd1387571dd21561f98
Diffstat (limited to 'test/expr.test')
-rw-r--r--test/expr.test5
1 files changed, 4 insertions, 1 deletions
diff --git a/test/expr.test b/test/expr.test
index 7137a1ae6..66fba6041 100644
--- a/test/expr.test
+++ b/test/expr.test
@@ -11,7 +11,7 @@
# This file implements regression tests for SQLite library. The
# focus of this file is testing expressions.
#
-# $Id: expr.test,v 1.52 2006/09/01 15:49:06 drh Exp $
+# $Id: expr.test,v 1.53 2007/04/06 02:32:35 drh Exp $
set testdir [file dirname $argv0]
source $testdir/tester.tcl
@@ -637,6 +637,9 @@ do_test expr-11.1 {
do_test expr-11.2 {
execsql {SELECT typeof(9223372036854775808)}
} {real}
+do_test expr-11.3 {
+ execsql {SELECT typeof(92233720368547758070)}
+} {real}
# These two statements used to leak memory (because of missing %destructor
# directives in parse.y).