guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/02: gnu: ruby-ruby-memcheck: Skip tests when cross-compiling.


From: guix-commits
Subject: 02/02: gnu: ruby-ruby-memcheck: Skip tests when cross-compiling.
Date: Mon, 10 Jul 2023 05:18:03 -0400 (EDT)

efraim pushed a commit to branch master
in repository guix.

commit c4a89a6d6bdf444b46ab44cb43764650ce61e748
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Mon Jul 10 12:01:38 2023 +0300

    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.
---
 gnu/packages/ruby.scm | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]