gnu: mariadb: Honor parallel-tests?.

* gnu/packages/databases.scm (mariadb)[arguments]: In custom 'check
phase honor #:parallel-tests? flag.
This commit is contained in:
Efraim Flashner 2021-09-29 10:04:45 +03:00
parent acbce4ea41
commit b1ef2deb66
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -900,14 +900,16 @@ (define-public mariadb
(for-each disable-plugin disabled-plugins)
#t)))
(replace 'check
(lambda* (#:key (tests? #t) #:allow-other-keys)
(lambda* (#:key (tests? #t) parallel-tests? #:allow-other-keys)
(if tests?
(with-directory-excursion "mysql-test"
(invoke "./mtr" "--verbose"
"--retry=3"
"--testcase-timeout=40"
"--suite-timeout=600"
"--parallel" (number->string (parallel-job-count))
"--parallel" (number->string (if parallel-tests?
(parallel-job-count)
1))
;; Skip the replication tests: they are very I/O
;; intensive and frequently causes indeterministic
;; failures even on powerful hardware.