diff options
author | unknown <msvensson@pilot.mysql.com> | 2008-04-24 13:02:53 +0200 |
---|---|---|
committer | unknown <msvensson@pilot.mysql.com> | 2008-04-24 13:02:53 +0200 |
commit | adc257481c543b978018c0e0cf640fc2cb3f61eb (patch) | |
tree | 2f87d7c7149d89733058436d02f5bbf0b4dcb5b7 /mysql-test/lib/My/SafeProcess.pm | |
parent | 3536675068b1615d1d8e0359421c81d143a6d56c (diff) | |
download | mariadb-git-adc257481c543b978018c0e0cf640fc2cb3f61eb.tar.gz |
Add support for running in parallel
mysql-test/lib/My/Options.pm:
Allow $VAR as option
mysql-test/lib/My/SafeProcess.pm:
Remove printouts
mysql-test/lib/My/Test.pm:
New BitKeeper file ``mysql-test/lib/My/Test.pm''
Diffstat (limited to 'mysql-test/lib/My/SafeProcess.pm')
-rw-r--r-- | mysql-test/lib/My/SafeProcess.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mysql-test/lib/My/SafeProcess.pm b/mysql-test/lib/My/SafeProcess.pm index 4d703d73b9a..eccc0fcdeed 100644 --- a/mysql-test/lib/My/SafeProcess.pm +++ b/mysql-test/lib/My/SafeProcess.pm @@ -65,7 +65,7 @@ END { # Kill any children still running for my $proc (values %running){ if ( $proc->is_child($$) ){ - print "Killing: $proc\n"; + #print "Killing: $proc\n"; $proc->kill(); } } @@ -461,8 +461,8 @@ sub wait_one { return 1; } - warn "wait_one: expected pid $pid but got $retpid" - unless( $retpid == $pid ); + #warn "wait_one: expected pid $pid but got $retpid" + # unless( $retpid == $pid ); $self->_collect(); return 0; |