gnu: mysql: Disable tests on aarch64-linux.

* gnu/packages/databases.scm (mysql)[arguments]: Disable the test suite
on aarch64-linux.
This commit is contained in:
Efraim Flashner 2017-03-27 11:52:48 +03:00
parent 6f76606984
commit b4f67b7ebb
No known key found for this signature in database
GPG Key ID: F4C1D3917EACEE93
1 changed files with 6 additions and 1 deletions

View File

@ -344,7 +344,12 @@ mapping from string keys to string values.")
(for-each delete-file (for-each delete-file
(find-files (string-append out "/bin") (find-files (string-append out "/bin")
"_embedded$")) "_embedded$"))
#t)))))) #t))))
;; On aarch64 the test suite runs out of memory and fails.
,@(if (string-prefix? "aarch64-linux"
(or (%current-target-system) (%current-system)))
'(#:tests? #f)
'())))
(native-inputs (native-inputs
`(("bison" ,bison) `(("bison" ,bison)
("perl" ,perl))) ("perl" ,perl)))