aboutsummaryrefslogtreecommitdiff
path: root/test/expr.test
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2005-01-11 17:46:41 +0000
committerdrh <drh@noemail.net>2005-01-11 17:46:41 +0000
commit48e5aa2769f6a798764f2049c9a62e37f6977d9c (patch)
treef3aeba55ce5e27561ff53002f9cfe2be38df8a4b /test/expr.test
parentc5cdca613ab96d48a5e1f071d27c0f63fe122d15 (diff)
downloadsqlite-48e5aa2769f6a798764f2049c9a62e37f6977d9c.tar.gz
sqlite-48e5aa2769f6a798764f2049c9a62e37f6977d9c.zip
Test coverage improvements on tokenize.c. (CVS 2196)
FossilOrigin-Name: 5767850ccadb3b53d14bca547e50f65de1d3092e
Diffstat (limited to 'test/expr.test')
-rw-r--r--test/expr.test6
1 files changed, 5 insertions, 1 deletions
diff --git a/test/expr.test b/test/expr.test
index 8bc66c432..94edb2c55 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.40 2004/11/17 16:41:29 danielk1977 Exp $
+# $Id: expr.test,v 1.41 2005/01/11 17:46:42 drh Exp $
set testdir [file dirname $argv0]
source $testdir/tester.tcl
@@ -543,4 +543,8 @@ ifcapable datetime {
}
set sqlite_current_time 0
+do_test expr-9.1 {
+ execsql {SELECT round(-('-'||'123'))}
+} 123
+
finish_test