gnu: ruby-ruby-memcheck: Skip tests when cross-compiling.
* gnu/packages/ruby.scm (ruby-ruby-memcheck)[arguments]: Adjust #:tests? to skip tests when cross-compiling.
This commit is contained in:
parent
ad80cfe0cb
commit
c4a89a6d6b
1 changed files with 2 additions and 1 deletions
|
@ -9503,7 +9503,8 @@ Profiling multiple threads simultaneously is supported.
|
||||||
(arguments
|
(arguments
|
||||||
(list
|
(list
|
||||||
;; The tests seem to fail on 32bit x86
|
;; The tests seem to fail on 32bit x86
|
||||||
#:tests? (not (target-x86-32?))
|
#:tests? (not (or (target-x86-32?)
|
||||||
|
(%current-target-system)))
|
||||||
#:phases
|
#:phases
|
||||||
#~(modify-phases %standard-phases
|
#~(modify-phases %standard-phases
|
||||||
(add-after 'unpack 'patch-valgrind-path
|
(add-after 'unpack 'patch-valgrind-path
|
||||||
|
|
Reference in a new issue