diff options
author | unknown <lenz@mysql.com> | 2002-10-03 18:30:49 +0200 |
---|---|---|
committer | unknown <lenz@mysql.com> | 2002-10-03 18:30:49 +0200 |
commit | 3c1e16c5749d73c55df89cd37c0c6a1bbd6bad0b (patch) | |
tree | 06f077666681ba58e67eac4bb3e813103011da4a /Build-tools | |
parent | 421514ae817446bdb851476c98d1af640fe7ce1c (diff) | |
download | mariadb-git-3c1e16c5749d73c55df89cd37c0c6a1bbd6bad0b.tar.gz |
- rearranged test order in Do-compile (BDB tends to fail more often than
InnoDB, so test it after InnoDB)
Build-tools/Do-compile:
- Test BDB after InnoDB (BDB tends to fail more often than InnoDB)
Diffstat (limited to 'Build-tools')
-rwxr-xr-x | Build-tools/Do-compile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Build-tools/Do-compile b/Build-tools/Do-compile index 6bee9fb8a92..a3da1804af5 100755 --- a/Build-tools/Do-compile +++ b/Build-tools/Do-compile @@ -374,14 +374,14 @@ 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"); - if ($opt_bdb) - { - check_system("perl ./run-all-tests --log --suffix=\"_bdb\" --die-on-errors $connect_option $tmp --create-option=\"type=bdb\"","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"); } + if ($opt_bdb) + { + check_system("perl ./run-all-tests --log --suffix=\"_bdb\" --die-on-errors $connect_option $tmp --create-option=\"type=bdb\"","RUN-mysql"); + } } rm_all($bench_tmpdir); |