Server IP : 172.67.216.182 / Your IP : 162.158.170.91 Web Server : Apache System : Linux krdc-ubuntu-s-2vcpu-4gb-amd-blr1-01.localdomain 5.15.0-142-generic #152-Ubuntu SMP Mon May 19 10:54:31 UTC 2025 x86_64 User : www ( 1000) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /www/server/mysql/src/mysql-test/suite/test_services/t/ |
Upload File : |
#--source include/have_daemon_example_plugin.inc --source include/not_embedded.inc call mtr.add_suppression("This is a warning from test plugin"); call mtr.add_suppression("This is an error from test plugin"); --echo ------ Run plugin ------------------------------------------------ --replace_result $TESTSERVICESTHREADED TESTSERVICESTHREADED eval INSTALL PLUGIN test_services_threaded SONAME '$TESTSERVICESTHREADED'; --echo ------ Wait until test execution in plugin is ready -------------- --echo let wait_timeout= 60 let $wait_timeout= 60; --echo let wait_condition=SELECT variable_value= 1 FROM information_schema.global_status --echo WHERE variable_name LIKE 'test_services_status'; let $wait_condition=SELECT variable_value= 1 FROM information_schema.global_status WHERE variable_name LIKE 'test_services_status'; --echo source include/wait_condition.inc; source include/wait_condition.inc; --echo ------ Stop plugin ----------------------------------------------- UNINSTALL PLUGIN test_services_threaded; --disable_warnings --echo ------ Service: my_snprintf -------------------------------------- let $MYSQLD_DATADIR= `select @@datadir`; cat_file $MYSQLD_DATADIR/test_services.log; remove_file $MYSQLD_DATADIR/test_services.log; --echo ------ Service: my_plugin_log_service ---------------------------- CREATE TABLE t1 (c1 varchar(30), c2 TEXT); --replace_result $MYSQLTEST_VARDIR MYSQLTEST_VARDIR eval LOAD DATA LOCAL INFILE '$MYSQLTEST_VARDIR/log/mysqld.1.err' INTO TABLE t1 FIELDS TERMINATED BY ' ['; SELECT replace(c2,'\r','') FROM t1 WHERE c2 LIKE '%test_services_threaded%'; DROP TABLE IF EXISTS t1;