Lines Matching refs:res
38 set res [catchcmd "test.db" ".show"]
39 list [regexp {stats: off} $res]
43 set res [catchcmd "test.db" ".show"]
44 list [regexp {stats: on} $res]
49 set res [catchcmd "-stats test.db" ".show"]
50 list [regexp {stats: on} $res]
54 set res [catchcmd "-stats test.db" ".show"]
55 list [regexp {stats: off} $res]
75 set res [catchcmd "test.db" {.show}]
76 list [regexp {stats: off} $res]
80 set res [catchcmd "test.db" {.stats ON
83 list [regexp {stats: on} $res]
87 set res [catchcmd "test.db" {.stats OFF
90 list [regexp {stats: off} $res]
95 set res [catchcmd "test.db" {SELECT 1;}]
96 list [regexp {Memory Used} $res] \
97 [regexp {Heap Usage} $res] \
98 [regexp {Autoindex Inserts} $res]
103 set res [catchcmd "test.db" {.stats ON
106 list [regexp {Memory Used} $res] \
107 [regexp {Heap Usage} $res] \
108 [regexp {Autoindex Inserts} $res]