me
/
guix
Archived
1
0
Fork 0

gnu: mariadb: Honor parallel-tests?.

* gnu/packages/databases.scm (mariadb)[arguments]: In custom 'check
phase honor #:parallel-tests? flag.
master
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
1 changed files with 4 additions and 2 deletions

View File

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