1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

Correct faulty commit, the opt_tastcase_timeout value is in minutes, to it need to be multiplied with 60 before ping passed to mtr_timer_start

This commit is contained in:
msvensson@neptunus.(none)
2006-11-07 12:56:55 +01:00
parent 79ee2c6842
commit eea46ce15b

View File

@ -2476,7 +2476,7 @@ sub run_suite () {
next; next;
} }
mtr_timer_start($glob_timers,"testcase", $opt_testcase_timeout); mtr_timer_start($glob_timers,"testcase", 60 * $opt_testcase_timeout);
run_testcase($tinfo); run_testcase($tinfo);
mtr_timer_stop($glob_timers,"testcase"); mtr_timer_stop($glob_timers,"testcase");
} }