summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorantirez <antirez@gmail.com>2011-12-07 18:31:39 +0100
committerantirez <antirez@gmail.com>2011-12-20 10:35:23 +0100
commitb76088845c65ed41c8ee54c1a71e3e0919914234 (patch)
tree0689cb3cfd07cd079a0aff85b4c35b12d215296a
parent8a625029e709cbe959a692da1ea3e9ea85dffc32 (diff)
downloadredis-b76088845c65ed41c8ee54c1a71e3e0919914234.tar.gz
Redis test: two redundant tests removed as they tend to create issues when running the test with valgrind.
-rw-r--r--tests/integration/aof.tcl10
1 files changed, 0 insertions, 10 deletions
diff --git a/tests/integration/aof.tcl b/tests/integration/aof.tcl
index a554f9ef1..bd9ac9924 100644
--- a/tests/integration/aof.tcl
+++ b/tests/integration/aof.tcl
@@ -31,11 +31,6 @@ 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]
- }
-
test "Unfinished MULTI: Server should have logged an error" {
set result [exec cat [dict get $srv stdout] | tail -n1]
assert_match "*Unexpected end of file reading the append only file*" $result
@@ -49,11 +44,6 @@ 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]
- }
-
test "Short read: Server should have logged an error" {
set result [exec cat [dict get $srv stdout] | tail -n1]
assert_match "*Bad file format reading the append only file*" $result