[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: gnu: ruby-stackprof: Adjust skipped test on power
From: |
guix-commits |
Subject: |
branch master updated: gnu: ruby-stackprof: Adjust skipped test on powerpc-linux. |
Date: |
Wed, 16 Mar 2022 14:28:21 -0400 |
This is an automated email from the git hooks/post-receive script.
efraim pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 21457fb31e gnu: ruby-stackprof: Adjust skipped test on powerpc-linux.
21457fb31e is described below
commit 21457fb31e2932673df36b769709b8deb05d2601
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Wed Mar 16 15:07:59 2022 +0200
gnu: ruby-stackprof: Adjust skipped test on powerpc-linux.
* gnu/packages/ruby.scm (ruby-stackprof)[arguments]: On powerpc-linux
adjust the 'skip-dubious-test phase.
---
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 7481257625..acccc4d4c4 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -7500,7 +7500,8 @@ navigation capabilities to @code{pry}, using
@code{byebug}.")
(modify-phases %standard-phases
(add-before 'check 'skip-dubious-test
(lambda _
- ,@(if (target-riscv64?)
+ ,@(if (or (target-riscv64?)
+ (target-ppc32?))
;; This unreliable test can fail with "Expected 32 to be <=
25."
'((substitute* "test/test_stackprof.rb"
((".*assert_operator profile\\[:missed_samples.*") "")))
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: gnu: ruby-stackprof: Adjust skipped test on powerpc-linux.,
guix-commits <=