Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Faustin Lammler
mariadb-10.1
Commits
c51b39ff
Commit
c51b39ff
authored
Nov 18, 2015
by
Otto Kekäläinen
Browse files
Keep a list of unstable tests that are to be skipped on official builds
parent
64cbe3b3
Changes
2
Hide whitespace changes
Inline
Side-by-side
debian/changelog
View file @
c51b39ff
...
@@ -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
...
...
debian/rules
View file @
c51b39ff
...
@@ -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:
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment