An error occurred fetching the project authors.
- 03 Jun, 2010 1 commit
-
-
Marko Mäkelä authored
-
- 17 Feb, 2010 2 commits
-
-
Bjorn Munch authored
Added --max-connections= argument to mysqltest and mtr Small fix to first patch: forgot to check before free'ing connections array
-
Bjorn Munch authored
Some logic would group by suite always Disable this if using --noreorder Also fix getting array from collect_one_suite() in this case Amended according to previous comment
-
- 11 Feb, 2010 1 commit
-
-
Bjorn Munch authored
Add --user=root to collect_mysqld_features() if running as root Please disregard previous commit; this is much simpler.
-
- 03 Feb, 2010 1 commit
-
-
Bjorn Munch authored
Too complex/risky to try to fix Instead, detect the problem and communicate that this is not supported
-
- 28 Jan, 2010 1 commit
-
-
Bjorn Munch authored
-
- 27 Jan, 2010 1 commit
-
-
Bjorn Munch authored
Define env. vars for both timeout settings This patch is for 5.0 (mtr v1) and should replaces for 5.1 up
-
- 25 Jan, 2010 1 commit
-
-
Bjorn Munch authored
As suggested, convert internally to value of build_thread
-
- 22 Jan, 2010 1 commit
-
-
Bernd Ocklin authored
-
- 07 Jan, 2010 1 commit
-
-
Bjorn Munch authored
-
- 05 Jan, 2010 2 commits
-
-
Bjorn Munch authored
Was available in v1 Porting to v2 required some rewriting Updated after review comments
-
Bjorn Munch authored
Combinations beginning with -- not allowed Allow them...
-
- 15 Dec, 2009 1 commit
-
-
Bjorn Munch authored
Extracts last 20 lines if no output after failure
-
- 26 Nov, 2009 2 commits
-
-
Bjorn Munch authored
mysqld->{proc} not defined for an embedded server Check only if {proc} defined
-
Bjorn Munch authored
Ignored w/message in v1 and v2
-
- 24 Nov, 2009 1 commit
-
-
Bjorn Munch authored
Problems occur after killing threads on Windows Get rid of the timeout threads, implement simple timer in wait_any_timeout()
-
- 19 Nov, 2009 2 commits
-
-
Bjorn Munch authored
mtr patch ported to v2
-
Bjorn Munch authored
For some reason it usually picks up mysqltest Wait .1s and then see if a server has died Change from first commit: label on separate line
-
- 18 Nov, 2009 1 commit
-
-
Bjorn Munch authored
Wrong argument order, fixed
-
- 17 Nov, 2009 1 commit
-
-
Bjorn Munch authored
Searches for my_safe_process binary too early Put this into a sub() and call it after examining options (incl. --help)
-
- 16 Nov, 2009 1 commit
-
-
Bjorn Munch authored
Seen in a few tests after 43418 Add code in extract_warning_lines() to skip this part
-
- 12 Nov, 2009 1 commit
-
-
Bjorn Munch authored
Checking is done before server is terminated Adds post processing of server logs if --valgrind Also had to remove --quiet option to valgrind
-
- 26 Oct, 2009 1 commit
-
-
Bjorn Munch authored
Prepend "Completed", "Timeout" or "Too many failed" to summary line
-
- 23 Oct, 2009 1 commit
-
-
Bjorn Munch authored
There's no need for --verbose for the mysqltest in check-warnings, remove it
-
- 19 Oct, 2009 1 commit
-
-
Bjorn Munch authored
Knowledge of no SSL support is not used Skip tests the same way e.g. innodb tests are Does not refer to have_ssl_communication.inc, will add this when merging to 6.0-codebase
-
- 18 Oct, 2009 1 commit
-
-
Bjorn Munch authored
Don't print entire log, but use extract_server_log() introduced by 46007
-
- 17 Oct, 2009 1 commit
-
-
Bjorn Munch authored
Test batches may be terminated too early Avoid counting exp-fail tests
-
- 14 Oct, 2009 1 commit
-
-
Bjorn Munch authored
Difficult to debug due to lacking report This does not solve the real issue, but extracts server log when it happens Forst commit was incomplete, didn't cover all cases
-
- 09 Oct, 2009 1 commit
-
-
Bjorn Munch authored
-
- 08 Oct, 2009 4 commits
-
-
Bjorn Munch authored
-
Bjorn Munch authored
Tried to use an expression inside "" Go via variable, and add $exe to the output
-
Bjorn Munch authored
Disallow (and don't use) space in combination names
-
Magnus Blåudd authored
- Remove the "hack" from mtr.pl that skipped searching for the .dll files when embedded and windows. Now the variables will be preoperly initialized. - Make the tests detect that they can't run on windows+embedded
-
- 06 Oct, 2009 2 commits
-
-
Bjorn Munch authored
Remove the alignment option, let valgrind use its default
-
Bjorn Munch authored
mysqladmin fails on Linux in 6.0 without --character-sets-dir Also added timeout for server shutdown, hope this will solve it
-
- 05 Oct, 2009 1 commit
-
-
Bjorn Munch authored
In stead of hard-coded 8, read from $MTR_MAX_PARALLEL if set
-
- 29 Sep, 2009 2 commits
-
-
Ingo Struewing authored
Backport from 6.0 to 5.1. Only those sync points are included, which are used in debug_sync.test. The Debug Sync Facility allows to place synchronization points in the code: open_tables(...) DEBUG_SYNC(thd, "after_open_tables"); lock_tables(...) When activated, a sync point can - Send a signal and/or - Wait for a signal Nomenclature: - signal: A value of a global variable that persists until overwritten by a new signal. The global variable can also be seen as a "signal post" or "flag mast". Then the signal is what is attached to the "signal post" or "flag mast". - send a signal: Assign the value (the signal) to the global variable ("set a flag") and broadcast a global condition to wake those waiting for a signal. - wait for a signal: Loop over waiting for the global condition until the global value matches the wait-for signal. Please find more information in the top comment in debug_sync.cc or in the worklog entry. .bzrignore: WL#4259 - Debug Sync Facility Added the symbolic link libmysqld/debug_sync.cc. CMakeLists.txt: WL#4259 - Debug Sync Facility Added definition for ENABLED_DEBUG_SYNC. configure.in: WL#4259 - Debug Sync Facility Added definition for ENABLED_DEBUG_SYNC. include/my_sys.h: WL#4259 - Debug Sync Facility Added definition for the DEBUG_SYNC_C macro. libmysqld/CMakeLists.txt: WL#4259 - Debug Sync Facility Added sql/debug_sync.cc. libmysqld/Makefile.am: WL#4259 - Debug Sync Facility Added sql/debug_sync.cc. mysql-test/include/have_debug_sync.inc: WL#4259 - Debug Sync Facility New include file. mysql-test/mysql-test-run.pl: WL#4259 - Debug Sync Facility Added option --debug_sync_timeout. mysql-test/r/debug_sync.result: WL#4259 - Debug Sync Facility New test result. mysql-test/r/have_debug_sync.require: WL#4259 - Debug Sync Facility New require file. mysql-test/t/debug_sync.test: WL#4259 - Debug Sync Facility New test file. mysys/my_static.c: WL#4259 - Debug Sync Facility Added definition for debug_sync_C_callback_ptr. mysys/thr_lock.c: WL#4259 - Debug Sync Facility Added sync point "wait_for_lock". sql/CMakeLists.txt: WL#4259 - Debug Sync Facility Added debug_sync.cc and debug_sync.h. sql/Makefile.am: WL#4259 - Debug Sync Facility Added debug_sync.cc and debug_sync.h. sql/debug_sync.cc: WL#4259 - Debug Sync Facility New source file. sql/debug_sync.h: WL#4259 - Debug Sync Facility New header file. sql/mysqld.cc: WL#4259 - Debug Sync Facility Added opt_debug_sync_timeout. Added calls to debug_sync_init() and debug_sync_end(). Fixed a purecov comment (unrelated). sql/set_var.cc: WL#4259 - Debug Sync Facility Added server variable "debug_sync". sql/set_var.h: WL#4259 - Debug Sync Facility Added declaration for server variable "debug_sync". sql/share/errmsg.txt: WL#4259 - Debug Sync Facility Added error messages ER_DEBUG_SYNC_TIMEOUT and ER_DEBUG_SYNC_HIT_LIMIT. sql/sql_base.cc: WL#4259 - Debug Sync Facility Added sync points "after_flush_unlock" and "before_lock_tables_takes_lock". sql/sql_class.cc: WL#4259 - Debug Sync Facility Added initialization for debug_sync_control to THD::THD. Added calls to debug_sync_init_thread() and debug_sync_end_thread(). sql/sql_class.h: WL#4259 - Debug Sync Facility Added element debug_sync_control to THD. storage/myisam/myisamchk.c: Fixed a typo in an error message string (unrelated).
-
Davi Arnaut authored
can be interpreted as a shell metacharacter in some circumstances. For example, it is interpreted as a command separator when invoking a debugger. mysql-test/lib/mtr_cases.pm: Use ':' as the separator on non-Windows platforms. mysql-test/mysql-test-run.pl: Remove unnecessary use of the separator.
-
- 24 Sep, 2009 1 commit
-
-
Magnus Blåudd authored
- Improve the report produced when a valgrind error is detected
-
- 02 Sep, 2009 1 commit
-
-
Georgi Kodinov authored
with the newer pb2 testing environments
-