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:
parent
a92bf11c49
commit
af4ea9c5cb
|
@ -186,7 +186,9 @@ in turn be used to build the final Rust.")
|
||||||
"#[ignore]\nfn connect_timeout_unroutable"))
|
"#[ignore]\nfn connect_timeout_unroutable"))
|
||||||
;; <https://lists.gnu.org/archive/html/guix-devel/2017-06/msg00222.html>
|
;; <https://lists.gnu.org/archive/html/guix-devel/2017-06/msg00222.html>
|
||||||
(substitute* "src/libstd/sys/unix/process/process_common.rs"
|
(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.
|
;; Our ld-wrapper cannot process non-UTF8 bytes in LIBRARY_PATH.
|
||||||
;; <https://lists.gnu.org/archive/html/guix-devel/2017-06/msg00193.html>
|
;; <https://lists.gnu.org/archive/html/guix-devel/2017-06/msg00193.html>
|
||||||
(delete-file-recursively "src/test/run-make/linker-output-non-utf8")
|
(delete-file-recursively "src/test/run-make/linker-output-non-utf8")
|
||||||
|
|
Loading…
Reference in New Issue