From 280c989c4ea19db280deef8f2625cc38f657636d Mon Sep 17 00:00:00 2001 From: Guilhem Bichot Date: Tue, 3 Jun 2008 18:28:52 +0200 Subject: [PATCH] Limit maria-recover.test to debug builds and non-ps-protocol for now. Reason is that non-debug Maria outputs less corruption warnings (to be discussed), and mysqltest eats warnings when in ps-protocol (to be discussed). This is temporary until a better fix is decided. mysql-test/t/maria-recover.test: limit test to debug builds and non-ps-protocol for now --- mysql-test/t/maria-recover.test | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/mysql-test/t/maria-recover.test b/mysql-test/t/maria-recover.test index 924d573fe4e..9f9db2d8987 100644 --- a/mysql-test/t/maria-recover.test +++ b/mysql-test/t/maria-recover.test @@ -1,6 +1,8 @@ # Test of the --maria-recover option. --source include/have_maria.inc +--source include/have_debug.inc # will be removed + select @@global.maria_recover; set global maria_recover=off; @@ -46,7 +48,9 @@ perl; close FILE; EOF +disable_ps_protocol; select * from t_corrupted2; # should show corruption and repair messages +enable_ps_protocol; select * from t_corrupted2; # should show just rows drop database mysqltest;