Commit c51b39ff authored by Otto Kekäläinen's avatar Otto Kekäläinen
Browse files

Keep a list of unstable tests that are to be skipped on official builds

parent 64cbe3b3
...@@ -7,6 +7,7 @@ mariadb-10.0 (10.0.22-2~exp2) UNRELEASED; urgency=low ...@@ -7,6 +7,7 @@ mariadb-10.0 (10.0.22-2~exp2) UNRELEASED; urgency=low
* Replace old 'make test' structure with direct call on mysql-test-run and * Replace old 'make test' structure with direct call on mysql-test-run and
parallelize the test suite run in the Debian build. parallelize the test suite run in the Debian build.
* Print in build log env info to help debug builds on different platforms. * Print in build log env info to help debug builds on different platforms.
* Keep a list of unstable tests that are to be skipped on official builds.
-- Otto Kekäläinen <otto@seravo.fi> Fri, 13 Nov 2015 22:08:49 +0200 -- Otto Kekäläinen <otto@seravo.fi> Fri, 13 Nov 2015 22:08:49 +0200
......
...@@ -92,8 +92,24 @@ override_dh_auto_build: ...@@ -92,8 +92,24 @@ override_dh_auto_build:
override_dh_auto_test: override_dh_auto_test:
@echo "RULES.$@" @echo "RULES.$@"
# Skip unstable tests
touch $(BUILDDIR)/mysql-test/unstable-tests
ifeq ($(ARCH), mipsel)
cat <<EOT >> $(BUILDDIR)/mysql-test/unstable-tests
federated.federated_partition : https://mariadb.atlassian.net/browse/MDEV-8691
federated.federated_transactions : MDEV-8691
federated.federated_innodb : MDEV-8691
multi_source.gtid : MDEV-8691
multi_source.multisource : MDEV-8691
rpl.rpl_auto_increment : MDEV-8691
rpl.rpl_auto_increment : MDEV-8691
rpl.rpl_auto_increment : MDEV-8691
rpl.rpl_invoked_features : MDEV-8691
EOF
endif
ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS))) ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
cd $(BUILDDIR)/mysql-test && ./mtr --force --testcase-timeout=30 --suite-timeout=540 --retry=3 --parallel=$(NUMJOBS) cd $(BUILDDIR)/mysql-test && ./mtr --force --testcase-timeout=30 --suite-timeout=540 --retry=3 --parallel=$(NUMJOBS) --skip-test-list=unstable-tests
endif endif
override_dh_auto_install: override_dh_auto_install:
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment