1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
|
# Smaller batch of weekly run for tier2 platforms
# Scheduled in the weekend and can run for 48 hours
# Runs all test suites with no special mysqld or MTR options
# All tests are run without big-test option.
# big-test runs were leading to sporadic failures in tier2 platforms
#### SECTION 1: RUN DEFAULT SUITES##############
# Add all combinations with default suites in this section
#
# Run all default suites
# rpl and binlog suites run with all 3
# binlog-formats row, stmt and mixed
perl mysql-test-run.pl --debug-server --force --timer --testcase-timeout=60 --suite-timeout=600 --comment=all-default --vardir=var-all-default --report-features --unit-tests-report --no-skip --skip-ndb
# Run all ndb tests separately.
# If no Ndb support, no tests will be attempted.
perl mysql-test-run.pl --debug-server --force --timer --testcase-timeout=60 --suite-timeout=600 --comment=ndb --vardir=var-ndb --report-features --no-skip --with-ndb-only
# with security features in ndb cluster: encrypted backup, TDE.
perl mysql-test-run.pl --debug-server --force --timer --testcase-timeout=60 --suite-timeout=600 --comment=ndb-sec --vardir=var-ndb-sec --report-features --no-skip --with-ndb-only --defaults-extra-file=suite/ndb/secure.cnf
############END OF SECTION1(DEFAULT SUITES) ######################
#################SECTION2: RUN SUITES THAT ARE NOT PART OF DEFAULT##########
# Run the suites that are not part of the default - funcs_2, stress, jp, nist
# engines, memcached
perl mysql-test-run.pl --debug-server --force --timer --testcase-timeout=60 --comment=funcs2-big --vardir=var-funcs2-big --suite=funcs_2 --no-skip
perl mysql-test-run.pl --debug-server --force --timer --comment=stress --vardir=var-stress --suite=stress --no-skip
perl mysql-test-run.pl --debug-server --force --timer --comment=jp --vardir=var-jp --suite=jp --no-skip
perl mysql-test-run.pl --debug-server --force --timer --comment=nist --vardir=var-nist --suite=nist --no-skip
# Engine independent tests
perl mysql-test-run.pl --debug-server --timer --force --comment=eits-tests-myisam-engine --vardir=var-stmt-eits-tests-myisam-engine --suite=engines/iuds,engines/funcs --mysqld=--default-storage-engine=myisam --mysqld=--default-tmp-storage-engine=myisam --no-skip
perl mysql-test-run.pl --debug-server --timer --force --comment=eits-tests-innodb-engine --vardir=var-stmt-eits-tests-innodb-engine --suite=engines/iuds,engines/funcs --mysqld=--default-storage-engine=innodb --no-skip
# Memcached tests
perl mysql-test-run.pl --debug-server --timer --force --comment=memcached --vardir=var-memcached --suite=memcached --no-skip
# Group Replication
perl mysql-test-run.pl --timer --debug-server --force --parallel=6 --comment=group_replication-debug --vardir=var-group_replication-debug --suite=group_replication
# Run the big tests only on 32-bit EL6 RPM
perl mysql-test-run.pl --timer --debug-server --force --parallel=6 --only-big-test --testcase-timeout=60 --suite-timeout=360 --comment=group_replication-debug-big --vardir=var-group_replication-debug-big --suite=group_replication --platform=el6-x86-32bit
# Run the default suites with the hypergraph optimizer
perl mysql-test-run.pl --debug-server --force --timer --testcase-timeout=60 --comment=hypergraph-debug --vardir=var-hyp-default --hypergraph --no-skip --skip-ndb
######END OF SECTION 2 (NON-DEFAULT SUITES)######################
|