gnu: rust: Don't #ignore the same test twice.

* gnu/packages/rust.scm (rust-1.19)[arguments]<#:phases>[patch-tests]:
Don't #ignore the same test twice.
This commit is contained in:
Danny Milosavljevic 2018-04-15 10:16:41 +02:00
parent a92bf11c49
commit af4ea9c5cb
No known key found for this signature in database
GPG key ID: E71A35542C30BAA5

View file

@ -186,7 +186,9 @@ (define-public rust-1.19
"#[ignore]\nfn connect_timeout_unroutable"))
;; <https://lists.gnu.org/archive/html/guix-devel/2017-06/msg00222.html>
(substitute* "src/libstd/sys/unix/process/process_common.rs"
(("fn test_process_mask") "#[ignore]\nfn test_process_mask"))
(("#\\[cfg_attr\\(target_arch = \"arm\", ignore\\)\\]
fn test_process_mask") "#[ignore]
fn test_process_mask"))
;; Our ld-wrapper cannot process non-UTF8 bytes in LIBRARY_PATH.
;; <https://lists.gnu.org/archive/html/guix-devel/2017-06/msg00193.html>
(delete-file-recursively "src/test/run-make/linker-output-non-utf8")