On 23/05 20.31, Alfranio Correia wrote:
> === modified file 'mysql-test/include/mtr_warnings.sql'
> --- a/mysql-test/include/mtr_warnings.sql 2011-04-06 10:36:10 +0000
> +++ b/mysql-test/include/mtr_warnings.sql 2011-05-23 20:31:04 +0000
> @@ -211,6 +211,12 @@ INSERT INTO global_suppressions VALUES
> */
> (".*If a crash happens this configuration does not guarantee.*"),
>
> + /*
> + Warning messages introduced in the context of the WL#4143.
> + */
> + ("Due to security issues one must use SSL/TSL while specifying START SLAVE USER=xxx
> PASSWORD=yyy."),
> + ("It is not recommend to store user and password in the master info repository due
> to security issues.*"),
Are these general warnings which can now show up in many tests? If
they're specific to this test, plase add them to the test instead:
call mtr.add_suppression("<text>");
> === added file 'mysql-test/suite/rpl/r/rpl_master_connection.result'
> --- a/mysql-test/suite/rpl/r/rpl_master_connection.result
> 1970-01-01 00:00:00 +0000
[......]
> +START SLAVE USER= 'root' PASSWORD= '' DEFAULT_AUTH= 'auth_test_plugin' PLUGIN_DIR=
> '/home/acorreia/workspace.oracle/repository.mysql/bzrwork/wl-4143/mysql-trunk/plugin/auth';
Uh-oh, explicit paths in the result file, this is not going to work!
You should preceed the corresponding line in .test with something like
this:
--replace_result $PLUGIN_AUTH_DIR PLUGIN_DIR
- Bjorn