diff options
author | Vladislav Vaintroub <wlad@mariadb.com> | 2016-09-26 13:03:02 +0200 |
---|---|---|
committer | Vladislav Vaintroub <wlad@mariadb.com> | 2016-09-26 13:03:02 +0200 |
commit | c91fdb66dbd26d832073e7b99075bfd0b5b9da11 (patch) | |
tree | 54e270f5ba7d5ad929231f2e83c400db8fe8c6d3 /mysql-test | |
parent | 8483659f4f017285a878ce563c1c756ee3e4d3dc (diff) | |
download | mariadb-git-c91fdb66dbd26d832073e7b99075bfd0b5b9da11.tar.gz |
Windows , mtr : allow cdb to print core dumps also if --parallel > 1
Diffstat (limited to 'mysql-test')
-rw-r--r-- | mysql-test/lib/My/CoreDump.pm | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/mysql-test/lib/My/CoreDump.pm b/mysql-test/lib/My/CoreDump.pm index 0e90967ef95..f9f7b3d8d4b 100644 --- a/mysql-test/lib/My/CoreDump.pm +++ b/mysql-test/lib/My/CoreDump.pm @@ -261,11 +261,7 @@ sub show { # On Windows, rely on cdb to be there... if (IS_WINDOWS) { - # Starting cdb is unsafe when used with --parallel > 1 option - if ( $parallel < 2 ) - { - _cdb($core_name); - } + _cdb($core_name); return; } |