1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
From: Debian Ruby Team <pkg-ruby-extras-maintainers@lists.alioth.debian.org>
Date: Thu, 8 Aug 2024 22:39:25 -0300
Subject: skip-on-s390x
---
test/fiber_test.rb | 1 +
1 file changed, 1 insertion(+)
--- a/test/fiber_test.rb
+++ b/test/fiber_test.rb
@@ -30,6 +30,7 @@ class FiberTest < TestCase
end
def test_fibers
+ skip "Skip on s390x" if(Gem::Platform.local.cpu == "s390x")
result = RubyProf::Profile.profile(measure_mode: RubyProf::WALL_TIME) { enumerator_with_fibers }
assert_equal(2, result.threads.size)
|