gnu: MariaDB: Skip replication tests.

* gnu/packages/databases.scm (mariadb)[arguments]: Add "--skip-rpl" to mtr
invocation.
This commit is contained in:
Marius Bakke 2020-09-12 15:43:27 +02:00
parent 525ebb8508
commit b2bb04bde5
No known key found for this signature in database
GPG key ID: A2A06DF2A33A54FA

View file

@ -874,6 +874,10 @@ (define-public mariadb
"--testcase-timeout=40"
"--suite-timeout=600"
"--parallel" (number->string (parallel-job-count))
;; Skip the replication tests: they are very I/O
;; intensive and frequently causes indeterministic
;; failures even on powerful hardware.
"--skip-rpl"
"--skip-test-list=unstable-tests"))
(format #t "test suite not run~%"))
#t))