guix-commits
[Top][All Lists]
Advanced

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

01/04: gnu: ruby-stackprof: Adjust skipped test on riscv64-linux.


From: guix-commits
Subject: 01/04: gnu: ruby-stackprof: Adjust skipped test on riscv64-linux.
Date: Wed, 2 Feb 2022 05:13:24 -0500 (EST)

efraim pushed a commit to branch master
in repository guix.

commit f1dfe9a27a345b3b534e0bf4bf26c1b819d9e769
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Wed Feb 2 10:50:00 2022 +0200

    gnu: ruby-stackprof: Adjust skipped test on riscv64-linux.
    
    * gnu/packages/ruby.scm (ruby-stackprof)[arguments]: On riscv64-linux
    adjust the 'skip-dubious-test phase.
---
 gnu/packages/ruby.scm | 14 +++++++++-----
 1 file changed, 9 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm
index 1632ad092b..4a7865a2f9 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -7,7 +7,7 @@
 ;;; Copyright © 2015, 2016, 2017 Ben Woodcroft <donttrustben@gmail.com>
 ;;; Copyright © 2017 Nikita <nikita@n0.is>
 ;;; Copyright © 2017, 2019, 2020, 2021 Marius Bakke <marius@gnu.org>
-;;; Copyright © 2017, 2018, 2019, 2020, 2021 Efraim Flashner 
<efraim@flashner.co.il>
+;;; Copyright © 2017, 2018, 2019, 2020, 2021, 2022 Efraim Flashner 
<efraim@flashner.co.il>
 ;;; Copyright © 2017, 2018, 2020, 2021 Tobias Geerinckx-Rice <me@tobias.gr>
 ;;; Copyright © 2017 Clément Lassieur <clement@lassieur.org>
 ;;; Copyright © 2017, 2018, 2019 Christopher Baines <mail@cbaines.net>
@@ -7476,11 +7476,15 @@ navigation capabilities to @code{pry}, using 
@code{byebug}.")
      `(#:phases
        (modify-phases %standard-phases
          (add-before 'check 'skip-dubious-test
-           ;; This unreliable test can fail with "Expected 0 to be >= 1."
            (lambda _
-             (substitute* "test/test_stackprof.rb"
-               (("def test_(cputime)" _ name)
-                (string-append "def skip_" name)))))
+             ,@(if (target-riscv64?)
+                 ;; This unreliable test can fail with "Expected 32 to be <= 
25."
+                 '((substitute* "test/test_stackprof.rb"
+                     ((".*assert_operator profile\\[:missed_samples.*") "")))
+                 ;; This unreliable test can fail with "Expected 0 to be >= 1."
+                 '((substitute* "test/test_stackprof.rb"
+                     (("def test_(cputime)" _ name)
+                      (string-append "def skip_" name)))))))
          (add-before 'check 'build-tests
            (lambda _
              (invoke "rake" "compile"))))))



reply via email to

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