From: antirez Date: Wed, 28 Mar 2012 08:55:17 +0000 (+0200) Subject: Redis test: regexp to check if valgrind reported errors modified. Now we no longer... X-Git-Url: https://git.saurik.com/redis.git/commitdiff_plain/0fefb5bbeb523bcf146dda4ba86872a527059918?ds=inline Redis test: regexp to check if valgrind reported errors modified. Now we no longer look at the total count because this includes "possibly lost" bytes that are not interesting for Redis (tons of false positives because of how sds.c works). --- diff --git a/tests/support/server.tcl b/tests/support/server.tcl index 928e5c40..984270ad 100644 --- a/tests/support/server.tcl +++ b/tests/support/server.tcl @@ -17,7 +17,7 @@ proc check_valgrind_errors stderr { set buf [read $fd] close $fd - if {![regexp -- {ERROR SUMMARY: 0 errors} $buf] || + if {[regexp -- { at 0x} $buf] || (![regexp -- {definitely lost: 0 bytes} $buf] && ![regexp -- {no leaks are possible} $buf])} { send_data_packet $::test_server_fd err "Valgrind error: $buf\n"