From dcacc00e3750300617ba6e16eb346713f91a783a Mon Sep 17 00:00:00 2001 From: Mitja Felicijan Date: Wed, 21 Jan 2026 22:52:54 +0100 Subject: Remove testing data --- .../integration/convert-ziplist-hash-on-load.tcl | 28 ---------------------- 1 file changed, 28 deletions(-) delete mode 100644 examples/redis-unstable/tests/integration/convert-ziplist-hash-on-load.tcl (limited to 'examples/redis-unstable/tests/integration/convert-ziplist-hash-on-load.tcl') diff --git a/examples/redis-unstable/tests/integration/convert-ziplist-hash-on-load.tcl b/examples/redis-unstable/tests/integration/convert-ziplist-hash-on-load.tcl deleted file mode 100644 index c8265b2..0000000 --- a/examples/redis-unstable/tests/integration/convert-ziplist-hash-on-load.tcl +++ /dev/null @@ -1,28 +0,0 @@ -tags {"external:skip"} { - -# Copy RDB with ziplist encoded hash to server path -set server_path [tmpdir "server.convert-ziplist-hash-on-load"] - -exec cp -f tests/assets/hash-ziplist.rdb $server_path -start_server [list overrides [list "dir" $server_path "dbfilename" "hash-ziplist.rdb"]] { - test "RDB load ziplist hash: converts to listpack when RDB loading" { - r select 0 - - assert_encoding listpack hash - assert_equal 2 [r hlen hash] - assert_match {v1 v2} [r hmget hash f1 f2] - } -} - -exec cp -f tests/assets/hash-ziplist.rdb $server_path -start_server [list overrides [list "dir" $server_path "dbfilename" "hash-ziplist.rdb" "hash-max-ziplist-entries" 1]] { - test "RDB load ziplist hash: converts to hash table when hash-max-ziplist-entries is exceeded" { - r select 0 - - assert_encoding hashtable hash - assert_equal 2 [r hlen hash] - assert_match {v1 v2} [r hmget hash f1 f2] - } -} - -} -- cgit v1.2.3