summaryrefslogtreecommitdiff
path: root/tests/unit/bitops.tcl
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/bitops.tcl')
-rw-r--r--tests/unit/bitops.tcl8
1 files changed, 6 insertions, 2 deletions
diff --git a/tests/unit/bitops.tcl b/tests/unit/bitops.tcl
index ec08a060d..1b7db407a 100644
--- a/tests/unit/bitops.tcl
+++ b/tests/unit/bitops.tcl
@@ -133,12 +133,12 @@ start_server {tags {"bitops"}} {
test {BITCOUNT syntax error #1} {
catch {r bitcount s 0} e
set e
- } {ERR*syntax*}
+ } {ERR *syntax*}
test {BITCOUNT syntax error #2} {
catch {r bitcount s 0 1 hello} e
set e
- } {ERR*syntax*}
+ } {ERR *syntax*}
test {BITCOUNT regression test for github issue #582} {
r del foo
@@ -546,7 +546,10 @@ start_server {tags {"bitops"}} {
}
}
}
+}
+run_solo {bitops-large-memory} {
+start_server {tags {"bitops"}} {
test "BIT pos larger than UINT_MAX" {
set bytes [expr (1 << 29) + 1]
set bitpos [expr (1 << 32)]
@@ -587,3 +590,4 @@ start_server {tags {"bitops"}} {
r del mykey
} {1} {large-memory needs:debug}
}
+} ;#run_solo