gnu: MariaDB: Skip replication tests.
* gnu/packages/databases.scm (mariadb)[arguments]: Add "--skip-rpl" to mtr invocation.
This commit is contained in:
parent
525ebb8508
commit
b2bb04bde5
1 changed files with 4 additions and 0 deletions
|
@ -874,6 +874,10 @@ Language.")
|
||||||
"--testcase-timeout=40"
|
"--testcase-timeout=40"
|
||||||
"--suite-timeout=600"
|
"--suite-timeout=600"
|
||||||
"--parallel" (number->string (parallel-job-count))
|
"--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"))
|
"--skip-test-list=unstable-tests"))
|
||||||
(format #t "test suite not run~%"))
|
(format #t "test suite not run~%"))
|
||||||
#t))
|
#t))
|
||||||
|
|
Reference in a new issue