diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2023-07-10 12:01:38 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2023-07-10 12:01:38 +0300 |
commit | c4a89a6d6bdf444b46ab44cb43764650ce61e748 (patch) | |
tree | 2def4d5a6b5c1cb760e277e3a2432a2d85241cd3 | |
parent | ad80cfe0cbd10494e663647269773d4c83d2fff6 (diff) | |
download | guix-c4a89a6d6bdf444b46ab44cb43764650ce61e748.tar.gz |
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.
-rw-r--r-- | gnu/packages/ruby.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 299764936c..a25126c5df 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -9503,7 +9503,8 @@ Profiling multiple threads simultaneously is supported. (arguments (list ;; The tests seem to fail on 32bit x86 - #:tests? (not (target-x86-32?)) + #:tests? (not (or (target-x86-32?) + (%current-target-system))) #:phases #~(modify-phases %standard-phases (add-after 'unpack 'patch-valgrind-path |