summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authormonty@donna.mysql.fi <>2001-04-02 01:45:24 +0300
committermonty@donna.mysql.fi <>2001-04-02 01:45:24 +0300
commit9ea338ac3f497433c2cc684866907f16422dd706 (patch)
tree90e5e8a8570e593f3241d7b766717cefc7a4130b /tests
parent65822120f5b553914de5d3c8983014ae896ee81a (diff)
downloadmariadb-git-9ea338ac3f497433c2cc684866907f16422dd706.tar.gz
Added INNODB as a synonym for INNOBASE
Fixed bug where FLUSH TABLES could make indexes unavailable for the next query Added --skip-safemalloc
Diffstat (limited to 'tests')
-rwxr-xr-xtests/fork_big.pl8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/fork_big.pl b/tests/fork_big.pl
index 1644fdc5fab..74941823c17 100755
--- a/tests/fork_big.pl
+++ b/tests/fork_big.pl
@@ -4,7 +4,7 @@
#
# Tested a lot with: --threads=30
-$opt_loop_count=200000; # Change this to make test harder/easier
+$opt_loop_count=500000; # Change this to make test harder/easier
##################### Standard benchmark inits ##############################
@@ -308,7 +308,7 @@ sub test_check
$type= "check";
for ($i=$j=0 ; !test_if_abort($dbh) ; $i++)
{
- sleep(60);
+ sleep(1000);
$table=$testtables[$j]->[0];
$sth=$dbh->prepare("$type table $table") || die "Got error on prepare: $DBI::errstr\n";
$sth->execute || die $DBI::errstr;
@@ -346,7 +346,7 @@ sub test_repair
$type= "repair";
for ($i=0 ; !test_if_abort($dbh) ; $i++)
{
- sleep(95);
+ sleep(2000);
$table=$testtables[0]->[0];
$sth=$dbh->prepare("$type table $table") || die "Got error on prepare: $DBI::errstr\n";
$sth->execute || die $DBI::errstr;
@@ -382,7 +382,7 @@ sub test_flush
$count=0;
while (!test_if_abort($dbh))
{
- sleep(60);
+ sleep(3000);
$dbh->do("flush tables $tables") ||
die "Got error on flush $DBI::errstr\n";
$count++;