diff options
author | unknown <msvensson@shellback.(none)> | 2006-10-11 15:45:35 +0200 |
---|---|---|
committer | unknown <msvensson@shellback.(none)> | 2006-10-11 15:45:35 +0200 |
commit | 6c0ad741276d36711f02de6510257f19053ac4b5 (patch) | |
tree | 5128cf03dd067000fc8a0dc10ce8987f3388b20a | |
parent | a0081378801c21915e94ca25a16213843d42599f (diff) | |
download | mariadb-git-6c0ad741276d36711f02de6510257f19053ac4b5.tar.gz |
mtr_im_stop returns 1 if all is well
-rwxr-xr-x | mysql-test/mysql-test-run.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/mysql-test-run.pl b/mysql-test/mysql-test-run.pl index dd6e8dacbdc..1759b357eb1 100755 --- a/mysql-test/mysql-test-run.pl +++ b/mysql-test/mysql-test-run.pl @@ -2904,7 +2904,7 @@ sub run_testcase ($) { # Stop Instance Manager if we are processing an IM-test case. # ---------------------------------------------------------------------- if ( $tinfo->{'component_id'} eq 'im' and - mtr_im_stop($instance_manager, $tinfo->{'name'}) != 0 ) + !mtr_im_stop($instance_manager, $tinfo->{'name'}) ) { mtr_error("Failed to stop Instance Manager.") } |