From 1abd2359637ac1331f7ac311327e08b962c28649 Mon Sep 17 00:00:00 2001 From: Tuomas Tynkkynen Date: Mon, 9 Apr 2018 22:01:50 +0300 Subject: [PATCH] rustc: Disable failing test on aarch64 https://hydra.nixos.org/build/72562211/nixlog/1 https://github.com/rust-lang/rust/issues/49807 --- pkgs/development/compilers/rust/rustc.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/development/compilers/rust/rustc.nix b/pkgs/development/compilers/rust/rustc.nix index 92b149865fa..d7705aa89e8 100644 --- a/pkgs/development/compilers/rust/rustc.nix +++ b/pkgs/development/compilers/rust/rustc.nix @@ -102,8 +102,10 @@ stdenv.mkDerivation { # Useful debugging parameter # export VERBOSE=1 - '' - + optionalString stdenv.isDarwin '' + '' + optionalString stdenv.isAarch64 '' + # https://github.com/rust-lang/rust/issues/49807 + rm -vr src/test/debuginfo/by-value-self-argument-in-trait-impl.rs + '' + optionalString stdenv.isDarwin '' # Disable all lldb tests. # error: Can't run LLDB test because LLDB's python path is not set rm -vr src/test/debuginfo/*