diff options
author | msvensson@shellback.(none) <> | 2006-10-11 15:45:35 +0200 |
---|---|---|
committer | msvensson@shellback.(none) <> | 2006-10-11 15:45:35 +0200 |
commit | d02909910baee70a7a20e3dce05dd1bdcaaf0f8a (patch) | |
tree | 5128cf03dd067000fc8a0dc10ce8987f3388b20a | |
parent | 3e3776421674ed85ec00580f7f1b9be85087ce1f (diff) | |
download | mariadb-git-d02909910baee70a7a20e3dce05dd1bdcaaf0f8a.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.") } |