summaryrefslogtreecommitdiff
path: root/test/progress.test
diff options
context:
space:
mode:
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
}