mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: mit-krb5: Disable tests on all 32-bit platforms.
* gnu/packages/mit-krb5.scm (mit-krb5)[arguments]: Change #:tests? to true only on x86_64-linux.
This commit is contained in:
parent
d9ecec9b87
commit
d2375c4330
1 changed files with 3 additions and 3 deletions
|
@ -51,9 +51,9 @@ (define-public mit-krb5
|
|||
;; Likewise with tests.
|
||||
#:parallel-tests? #f
|
||||
|
||||
;; XXX: On i686, 'kdb5_util' hangs on an fcntl/F_SETLKW call while
|
||||
;; running the tests in 'src/tests'.
|
||||
#:tests? ,(not (string=? (%current-system) "i686-linux"))
|
||||
;; XXX: On 32-bit systems, 'kdb5_util' hangs on an fcntl/F_SETLKW call
|
||||
;; while running the tests in 'src/tests'.
|
||||
#:tests? ,(string=? (%current-system) "x86_64-linux")
|
||||
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
|
|
Loading…
Reference in a new issue