An error occurred fetching the project authors.
- 20 Jan, 2010 1 commit
-
-
Bernd Ocklin authored
-
- 07 Jan, 2010 1 commit
-
-
Bjorn Munch authored
Undid amendment allowing pending reap after switching connections Moved check for pending reap earlier; failed if running with ps-protocol
-
- 06 Jan, 2010 3 commits
-
-
Bjorn Munch authored
Small amendment: ignore pending reap when switching connection, add test
-
Bjorn Munch authored
Set a flag after send to trap the case
-
Bjorn Munch authored
Implemented --lowercase_result which lower cases next result
-
- 16 Dec, 2009 1 commit
-
-
Bjorn Munch authored
-
- 26 Nov, 2009 1 commit
-
-
Bjorn Munch authored
As suggested, replaced relevant uses of my_fopen with fopen (and close) Tested on HPUX where it was reproducable with test innodb_bug30919
-
- 21 Nov, 2009 1 commit
-
-
Davi Arnaut authored
-
- 11 Nov, 2009 1 commit
-
-
Bjorn Munch authored
Actually, fails on 'perl' in any while Fixed essentially the same way as for append_file
-
- 03 Nov, 2009 1 commit
-
-
Vladislav Vaintroub authored
The reason for the bug is that mysqtest as well as other client tools running in test suite (mysqlbinlog, mysqldump) will first try to connect whatever database has created shared memory with default base name "MySQL" and use this. (Same effect could be seen on Unix if mtr would not care to calculate "port" and "socket" parameter). The fix ensures that all client tools and running in mtr use unique per-database shared memory base parameters, so there is no possibility to clash with already installed one. We use socket name for shared memory base (it's known to be unique). This shared-memory-base is written to the MTR config file to the [client] and [mysqld] sections. Fix made also made sure all client tools understand and correctly handle --shared-memory-base. Prior to this patch it was not the case for mysqltest, mysqlbinlog and mysql_client_test. All new connections done from mtr scripts via connect() will by default set shared-memory-base. And finally, there is a possibility to force shared memory or pipe connection and overwrite shared memory/pipe base name from within mtr scripts via optional PIPE or SHM modifier. This functionality was manually backported from 6.0 (original patch http://lists.mysql.com/commits/74749)
-
- 08 Oct, 2009 1 commit
-
-
Bjorn Munch authored
This was affected by same problem as append_file etc. Added Q_ERROR to special handling, and added small test
-
- 10 Sep, 2009 1 commit
-
-
Alexander Nozdrin authored
on Windows in dbug.c) -- part 2: a patch for the DBUG subsystem to detect misuse of DBUG_ENTER / DBUG_RETURN macros. 5.1 version.
-
- 02 Sep, 2009 1 commit
-
-
Bjorn Munch authored
a "if" Bug #41913 mysqltest cannot source files from if inside while Some commands require additional processing which only works first time Keep content for write_file or append_file with the st_command struct Add tests for those cases to mysqltest.test
-
- 19 Aug, 2009 1 commit
-
-
Bjorn Munch authored
diff was actually called but result never outputted before exiting Added extra code to dump output *unless* failure was expected
-
- 18 Aug, 2009 1 commit
-
-
Bjorn Munch authored
Moved some dynstr_free() further up
-
- 11 Aug, 2009 1 commit
-
-
Bjorn Munch authored
Output would match an empty result file but we don't check Allow empty output IFF there is an empty result file.
-
- 27 May, 2009 1 commit
-
-
Bjorn Munch authored
-
- 26 May, 2009 1 commit
-
-
Bjorn Munch authored
Incorrection assumption about delimiter character in connection command
-
- 25 May, 2009 1 commit
-
-
Bjorn Munch authored
check_command_args() always looks for the first , (or whatever) Extended check_command_args() to let arguments be quoted Added test in mysqltest.test
-
- 07 May, 2009 1 commit
-
-
Jim Winstead authored
handle the --skip-password option correctly. (Bug #28479)
-
- 28 Apr, 2009 1 commit
-
-
Jim Winstead authored
usage information. (Bug #31883)
-
- 13 Mar, 2009 1 commit
-
-
Magnus Svensson authored
- Print the output(if any) from the command that failed, in many cases this will make it possible to immediately see what went wrong.
-
- 11 Mar, 2009 1 commit
-
-
Bjorn Munch authored
mtr on Windows does not give decent diff due to missing diff install Modified to look for 'mtrdiff' if diff not available.
-
- 13 Feb, 2009 1 commit
-
-
Rafal Somla authored
testcase checks are made. MTR spawns mysqltest to run check-testcase test before and after each testcase it runs. It can also run check-warnings using mysqltest. Since it happened on PB that these checks hanged, this patch provides additional feedback to help investigating such failures: - mysqltest is modified to give feedback about main steps in execution of a testcase if run in verbose mode (including connection to the server), - MTR is modified to run mysqltest in verbose mode when doing check-testcase or check-warnings. The diagnostic output from mysqltest is preserved so that it is saved upon test failure. client/mysqltest.cc: Add verbose messages informing about main steps in execution of a testcase. mysql-test/mysql-test-run.pl: - When doing check-testcase or check-warnings run mysqltest in verbose mode. - Do not delete the mysqltest's error log if errors are detected during these
-
- 21 Jan, 2009 1 commit
-
-
Bjorn Munch authored
SIGABRT is sent to relevant processes after a timeout client/mysqltest.cc: Fixed signal handlers to mysqltest actually dumps core mysql-test/lib/My/CoreDump.pm: Added support for dbx mysql-test/lib/My/SafeProcess.pm: Added dump_core to force process to dump core mysql-test/lib/My/SafeProcess/safe_process.cc: Traps SIGABRT and sends this on to child mysql-test/mysql-test-run.pl: When test times out, force core dumps on mysqltest and servers
-
- 15 Jan, 2009 1 commit
-
-
Magnus Svensson authored
sync_slave_with_master - Additional patch for "disconnect $variable"
-
- 25 Dec, 2008 1 commit
-
-
He Zhenxing authored
mysqltest command 'shutdown_server' is supposed to shutdown the server and wait for it to be gone, and kill it when timeout. But because the arguments passed to my_kill were in the wrong order, 'shutdown_server' does not wait nor kill the server at all. So after 'shutdown_server', the server is still running, and the server may still accepting connections. mysql-test/include/mtr_warnings.sql: Suppress forcing close thread messages when server shuts down mysql-test/include/restart_mysqld.inc: wait_until_disconnected.inc is not required after fix shutdown_server command
-
- 14 Nov, 2008 3 commits
-
-
Serge Kozlov authored
1. mysqltest.cc - added flush to log file after each executed command in a testcase. 2. mtr shows 20 last lines from test case log file if timeout reached. 3. Optimizing the code by Magnus review. 4. It is partially fix bug#40150
-
Magnus Svensson authored
-
Magnus Svensson authored
-
- 10 Nov, 2008 1 commit
-
-
Magnus Svensson authored
-
- 23 Oct, 2008 1 commit
-
-
Sven Sandberg authored
Problem: In the mysqltest language, it was not possible to set the current connection from a variable, and it was not possible to read the current connection. Fix: Allow setting the connection from a variable, like: connection $variable; and introduce the mysqltest language variable $CURRENT_CONNECTION, which holds the name of the current connection. client/mysqltest.cc: - Made select_connection use the common argument parser instead of its own home-rolled version. That allows variable expansion, for instance. - Made select_connection_name set the variable $CURRENT_CONNECTION, so that test scripts can use that. - Refactored a bit so that stuff that needs to be done when changing connection is located to one place. mysql-test/t/mysqltest.test: Added test case for $CURRENT_CONNECTION and "connection $variable"
-
- 29 Aug, 2008 1 commit
-
-
Magnus Svensson authored
-
- 25 Aug, 2008 1 commit
-
-
Magnus Svensson authored
-
- 09 Aug, 2008 4 commits
-
-
Magnus Svensson authored
-
Magnus Svensson authored
-
Magnus Svensson authored
-
Magnus Svensson authored
-
- 04 Aug, 2008 2 commits
-
-
Magnus Svensson authored
-
Magnus Svensson authored
-