mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-24 11:39:46 -05:00
gnu: ruby-activesupport: Skip a failing test on i686-linux.
* gnu/packages/rails.scm (ruby-activesupport) [arguments]: Skip the test_iso8601_output_and_reparsing test when building for i686-linux.
This commit is contained in:
parent
826b222703
commit
206982544b
1 changed files with 6 additions and 0 deletions
|
@ -81,6 +81,12 @@ (define-public ruby-activesupport
|
|||
"")
|
||||
((".*behaviors/encoded_key_cache_behavior.*")
|
||||
""))
|
||||
(when #$(target-x86-32?)
|
||||
;; This test fails on i686 (see:
|
||||
;; https://github.com/rails/rails/issues/47832).
|
||||
(substitute* "test/core_ext/duration_test.rb"
|
||||
(("def test_iso8601_output_and_reparsing.*" all)
|
||||
(string-append all " skip('fails on i686')\n"))))
|
||||
(delete-file "test/evented_file_update_checker_test.rb")
|
||||
;; These tests require cache_store_behavior, disabled above.
|
||||
(delete-file "test/cache/stores/file_store_test.rb")
|
||||
|
|
Loading…
Reference in a new issue