summaryrefslogtreecommitdiff
path: root/test/progress.test
diff options
context:
space:
mode:
authorHans-Christoph Steiner <hans@eds.org>2014-10-16 22:51:35 -0400
committerHans-Christoph Steiner <hans@eds.org>2014-10-16 22:51:35 -0400
commit569c6676a6ddb0ff73821d7693b5e18ddef809b9 (patch)
tree833538da7bba39105daff45e265aef386a200acd /test/progress.test
parent08119c361d1181b3e8f1abb429236e488a664753 (diff)
Imported Upstream version 3.2.0upstream
Diffstat (limited to 'test/progress.test')
-rw-r--r--test/progress.test4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/progress.test b/test/progress.test
index b25a100..993426a 100644
--- a/test/progress.test
+++ b/test/progress.test
@@ -164,10 +164,12 @@ do_test progress-1.7 {
}
set ::res [list]
+ explain {SELECT a, b, c FROM abc}
db eval {SELECT a, b, c FROM abc} {
lappend ::res $a $b $c
- db progress 10 "expr 1"
+ db progress 5 "expr 1"
catch {db eval {SELECT a, b, c FROM abc} { }} msg
+ db progress 5 "expr 0"
lappend ::res $msg
}