From 97947a72a4839fc8867f518ba8dd7c00bd00d9a3 Mon Sep 17 00:00:00 2001 From: unknown Date: Wed, 26 Jul 2006 12:21:34 +0200 Subject: [PATCH] Change mtr_error to mtr_warning allowing processing to continue when mysqld fails to start mysql-test/mysql-test-run.pl: Report warining when failure to start mysqld was detected, this will allow the testcase to continue executing. The failure to start mysqld will be caugt when executing mysqltest --- mysql-test/mysql-test-run.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mysql-test/mysql-test-run.pl b/mysql-test/mysql-test-run.pl index c1b354e7e07..2c79feaeb20 100755 --- a/mysql-test/mysql-test-run.pl +++ b/mysql-test/mysql-test-run.pl @@ -3355,7 +3355,7 @@ sub run_testcase_start_servers($) { if (mysqld_wait_started($mysqld)) { - mtr_error("Failed to start $mysqld->{'type'} mysqld $mysqld->{'idx'}"); + mtr_warning("Failed to start $mysqld->{'type'} mysqld $mysqld->{'idx'}"); } } }