]> git.saurik.com Git - redis.git/blobdiff - tests/integration/aof.tcl
Merge pull request #146 from smly/fixed-redis-check-dump
[redis.git] / tests / integration / aof.tcl
index 954edc2c4959646ae5583313efb4a75d79596fa7..a554f9ef13573d16fb4dd6e480510d7f30ac53c0 100644 (file)
@@ -32,6 +32,7 @@ tags {"aof"} {
 
     start_server_aof [list dir $server_path] {
         test "Unfinished MULTI: Server should not have been started" {
+            if {$::valgrind} {after 2000}
             assert_equal 0 [is_alive $srv]
         }
 
@@ -49,6 +50,7 @@ tags {"aof"} {
 
     start_server_aof [list dir $server_path] {
         test "Short read: Server should not have been started" {
+            if {$::valgrind} {after 2000}
             assert_equal 0 [is_alive $srv]
         }
 
@@ -119,4 +121,11 @@ tags {"aof"} {
             assert_equal 0 [$client llen list]
         }
     }
+
+    start_server {overrides {appendonly {yes} appendfilename {appendonly.aof}}} {
+        test {Redis should not try to convert DEL into EXPIREAT for EXPIRE -1} {
+            r set x 10
+            r expire x -1
+        }
+    }
 }