diff options
author | df@kahlann.erinye.com <> | 2006-11-30 13:32:16 +0100 |
---|---|---|
committer | df@kahlann.erinye.com <> | 2006-11-30 13:32:16 +0100 |
commit | c75d099a0b8b24e8d1005daf4e3a9f95dc2fa8db (patch) | |
tree | 4811f51ab091813510bc8b076cb0c603b2db96a7 | |
parent | 645aa69dd3fad0ef22788dde84f2f286c4bf9de9 (diff) | |
parent | d92eea86874a55a08d58bfc96eec6ba7c82118e8 (diff) | |
download | mariadb-git-c75d099a0b8b24e8d1005daf4e3a9f95dc2fa8db.tar.gz |
Merge kahlann.erinye.com:/home/df/mysql/build/mysql-5.0-build-work
into kahlann.erinye.com:/home/df/mysql/build/mysql-5.1-build
-rw-r--r-- | mysql-test/lib/mtr_process.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/lib/mtr_process.pl b/mysql-test/lib/mtr_process.pl index 9d0c1f601ba..eef2f1b9dd5 100644 --- a/mysql-test/lib/mtr_process.pl +++ b/mysql-test/lib/mtr_process.pl @@ -1053,7 +1053,7 @@ sub sleep_until_file_created ($$$) { # Print extra message every 60 seconds my $seconds= ($loop * $sleeptime) / 1000; - if ( $seconds > 1 and int($seconds) % 60 == 0 ) + if ( $seconds > 1 and int($seconds * 10) % 600 == 0 ) { my $left= $timeout - $seconds; mtr_warning("Waited $seconds seconds for $pidfile to be created, " . |