Added new test to check that "CONFIG appendonly no" actually kills the background AOF operation in progress if any.

This commit is contained in:
antirez 2012-04-07 13:22:04 +02:00
parent 2cbdab903f
commit 69e7958918

View File

@ -1,4 +1,15 @@
start_server {tags {"aofrw"}} { start_server {tags {"aofrw"}} {
test {Turning off AOF kills the background writing child if any} {
r config set appendonly yes
waitForBgrewriteaof r
r multi
r bgrewriteaof
r config set appendonly no
r exec
set result [exec cat [srv 0 stdout] | tail -n1]
} {*Killing*AOF*child*}
foreach d {string int} { foreach d {string int} {
foreach e {ziplist linkedlist} { foreach e {ziplist linkedlist} {
test "AOF rewrite of list with $e encoding, $d data" { test "AOF rewrite of list with $e encoding, $d data" {