/usr/lib/mysql-testsuite/t/bug12969156.test is in percona-server-test-5.6 5.6.22-rel71.0-0ubuntu4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | --source include/have_daemon_example_plugin.inc
--source include/not_embedded.inc
# TODO: the windows emulation of pthreads doesn't behave predictably
--source include/not_windows.inc
--echo #
--echo # Bug #12969156 : SEGMENTATION FAULT ON UNINSTALLING
--echo # DAEMON_EXAMPLE PLUGIN
--echo #
let $counter= 0;
while ($counter < 10)
{
--replace_result $DAEMONEXAMPLE DAEMONEXAMPLE
eval INSTALL PLUGIN daemon_example SONAME '$DAEMONEXAMPLE';
UNINSTALL PLUGIN daemon_example;
inc $counter;
}
|