efraim pushed a commit to branch core-updates
in repository guix.
commit b4f67b7ebb44fa0a6c8abeb4d6fc3bb2ac2de329
Author: Efraim Flashner <[email protected]>
Date: Mon Mar 27 11:52:48 2017 +0300
gnu: mysql: Disable tests on aarch64-linux.
* gnu/packages/databases.scm (mysql)[arguments]: Disable the test suite
on aarch64-linux.
---
gnu/packages/databases.scm | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm
index be92c41..a47f844 100644
--- a/gnu/packages/databases.scm
+++ b/gnu/packages/databases.scm
@@ -344,7 +344,12 @@ mapping from string keys to string values.")
(for-each delete-file
(find-files (string-append out "/bin")
"_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
`(("bison" ,bison)
("perl" ,perl)))