diff options
author | Monty <monty@mariadb.org> | 2016-08-21 20:14:13 +0300 |
---|---|---|
committer | Monty <monty@mariadb.org> | 2016-08-21 20:14:13 +0300 |
commit | 8d5a0d650b123e963d5fead2424783a9b52da395 (patch) | |
tree | 7c12722ba264d3459f3ec85f4d1aa0ba5c5ee81f /mysql-test/lib | |
parent | 05f61ba46046ca835071a73b9255e787dcce9255 (diff) | |
download | mariadb-git-8d5a0d650b123e963d5fead2424783a9b52da395.tar.gz |
Cleanups and minor fixes
- Fixed typos
- Added --core-on-failure to mysql-test-run
- More DBUG_PRINT in viosocket.c
- Don't forget CLIENT_REMEMBER_OPTIONS for compressed slave protocol
- Removed not used stage variables
Diffstat (limited to 'mysql-test/lib')
-rw-r--r-- | mysql-test/lib/My/SafeProcess.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/lib/My/SafeProcess.pm b/mysql-test/lib/My/SafeProcess.pm index a9b4f9a4ecc..f3ee772cca3 100644 --- a/mysql-test/lib/My/SafeProcess.pm +++ b/mysql-test/lib/My/SafeProcess.pm @@ -338,7 +338,7 @@ sub dump_core { my ($self)= @_; return if IS_WINDOWS; my $pid= $self->{SAFE_PID}; - die "Can't cet core from not started process" unless defined $pid; + die "Can't get core from not started process" unless defined $pid; _verbose("Sending ABRT to $self"); kill ("ABRT", $pid); return 1; |