diff options
author | unknown <ranger@regul.home.lan> | 2005-12-16 22:53:10 +0200 |
---|---|---|
committer | unknown <ranger@regul.home.lan> | 2005-12-16 22:53:10 +0200 |
commit | 7c49bdc10e06db64cde23c7fe227476308f8a1ec (patch) | |
tree | 112ca1d2f62a02ef6619ebc8a1e6923aac548027 /mysql-test/mysql-test-run.pl | |
parent | 9f444445bc4639ea50fce957ded28749402c710b (diff) | |
download | mariadb-git-7c49bdc10e06db64cde23c7fe227476308f8a1ec.tar.gz |
Fixed default values for counters to 0
Diffstat (limited to 'mysql-test/mysql-test-run.pl')
-rwxr-xr-x | mysql-test/mysql-test-run.pl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mysql-test/mysql-test-run.pl b/mysql-test/mysql-test-run.pl index 0513d3d4a1a..6e46a93dce9 100755 --- a/mysql-test/mysql-test-run.pl +++ b/mysql-test/mysql-test-run.pl @@ -276,9 +276,9 @@ our $opt_stress= ""; our $opt_stress_suite= "main"; our $opt_stress_mode= "random"; our $opt_stress_threads= 5; -our $opt_stress_test_count= ""; -our $opt_stress_loop_count= ""; -our $opt_stress_test_duration= ""; +our $opt_stress_test_count= 0; +our $opt_stress_loop_count= 0; +our $opt_stress_test_duration= 0; our $opt_stress_init_file= ""; our $opt_stress_test_file= ""; |