summaryrefslogtreecommitdiff
path: root/Build-tools/Do-compile
diff options
context:
space:
mode:
authorunknown <lenz@mysql.com>2002-10-30 16:45:11 +0100
committerunknown <lenz@mysql.com>2002-10-30 16:45:11 +0100
commit1ede1572a716d2ee7a4e84834aafb7f12fb351ad (patch)
treeed5d567e304d4980269942c16ea8164264ae03b3 /Build-tools/Do-compile
parentf7b50aabd829753c7cbea9a0acbab97054c075e1 (diff)
downloadmariadb-git-1ede1572a716d2ee7a4e84834aafb7f12fb351ad.tar.gz
- Do-compile: added a fast test run with dynamic-row tables
- Do-compile: fix small (cosmetical, not critical) typo Build-tools/Do-compile: - added a fast test run with dynamic-row tables - fix small (cosmetical, not critical) typo
Diffstat (limited to 'Build-tools/Do-compile')
-rwxr-xr-xBuild-tools/Do-compile6
1 files changed, 4 insertions, 2 deletions
diff --git a/Build-tools/Do-compile b/Build-tools/Do-compile
index bdec06a5f9f..067b88888ac 100755
--- a/Build-tools/Do-compile
+++ b/Build-tools/Do-compile
@@ -381,13 +381,15 @@ if ($opt_stage <= 9 && !$opt_no_test)
log_system("rm -f output/*");
$tmp= $opt_fast_benchmark ? "--fast --user root --small-test" : "";
check_system("perl ./run-all-tests --log --die-on-errors $connect_option $tmp","RUN-mysql");
+ # Run additional fast test with dynamic-row tables
+ check_system("perl ./run-all-tests --log --suffix=\"_dynamic_rows\" --die-on-errors $connect_option --fast --user=root --small-test --create-options=\"row_format=dynamic\"","RUN-mysql");
if ($opt_innodb)
{
- check_system("perl ./run-all-tests --log --suffix=\"_innodb\" --die-on-errors $connect_option $tmp --create-option=\"type=innodb\"","RUN-mysql");
+ check_system("perl ./run-all-tests --log --suffix=\"_innodb\" --die-on-errors $connect_option $tmp --create-options=\"type=innodb\"","RUN-mysql");
}
if ($opt_bdb)
{
- check_system("perl ./run-all-tests --log --suffix=\"_bdb\" --die-on-errors $connect_option $tmp --create-option=\"type=bdb\"","RUN-mysql");
+ check_system("perl ./run-all-tests --log --suffix=\"_bdb\" --die-on-errors $connect_option $tmp --create-options=\"type=bdb\"","RUN-mysql");
}
}