Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Adjust the shell test script "shell4.test" to account for changes in the ".stat on" display format from the previous checkin. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
2f2fa7dd809ae2a67048643da8c01a46 |
User & Date: | drh 2010-07-28 17:16:41.000 |
Context
2010-07-28
| ||
17:36 | Improve the accuracy of the Pager heap usage estimate. (check-in: ae89777e7f user: drh tags: trunk) | |
17:16 | Adjust the shell test script "shell4.test" to account for changes in the ".stat on" display format from the previous checkin. (check-in: 2f2fa7dd80 user: drh tags: trunk) | |
17:01 | Record the pcache allocation size statistics even for pcache overflow allocations. Adjust the wording on one of the stat output lines in the shell. (check-in: f9adf66ad5 user: drh tags: trunk) | |
Changes
Changes to tool/shell4.test.
︙ | ︙ | |||
118 119 120 121 122 123 124 | }] list [regexp {stats: off} $res] } {1} # make sure stats not present when off do_test shell4-1.5.1 { set res [catchcmd "test.db" {SELECT 1;}] | | | | 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 | }] list [regexp {stats: off} $res] } {1} # make sure stats not present when off do_test shell4-1.5.1 { set res [catchcmd "test.db" {SELECT 1;}] list [regexp {Memory Used} $res] \ [regexp {Heap Usage} $res] \ [regexp {Autoindex Inserts} $res] } {0 0 0} # make sure stats are present when on do_test shell4-1.5.2 { set res [catchcmd "test.db" {.stats ON SELECT 1; }] list [regexp {Memory Used} $res] \ [regexp {Heap Usage} $res] \ [regexp {Autoindex Inserts} $res] } {1 1 1} puts "CLI tests completed successfully" |