aboutsummaryrefslogtreecommitdiff
path: root/pkgs/shells/bash/bash-completion
diff options
context:
space:
mode:
authorAndrew Childs <lorne@cons.org.nz>2020-04-30 01:04:39 +0900
committerAndrew Childs <lorne@cons.org.nz>2020-04-30 01:06:40 +0900
commit42afec1e5876775653335aa46042f99cf0ca96e3 (patch)
tree7c6d6b583ad2bbdebe882019f562a3b1d43a6a99 /pkgs/shells/bash/bash-completion
parent26d3ae2f240ae85f27d566e78f7732b6aecec686 (diff)
bash-completion: ignore failing gcc tests on Aarch32
Diffstat (limited to 'pkgs/shells/bash/bash-completion')
-rw-r--r--pkgs/shells/bash/bash-completion/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/shells/bash/bash-completion/default.nix b/pkgs/shells/bash/bash-completion/default.nix
index c223985c2fb8..8463b1750d16 100644
--- a/pkgs/shells/bash/bash-completion/default.nix
+++ b/pkgs/shells/bash/bash-completion/default.nix
@@ -41,7 +41,7 @@ stdenv.mkDerivation rec {
# - ignore test_screen because it assumes vt terminals exist
checkPhase = ''
pytest . \
- ${stdenv.lib.optionalString (stdenv.hostPlatform.isAarch64) "--ignore=test/t/test_gcc.py"} \
+ ${stdenv.lib.optionalString (stdenv.hostPlatform.isAarch64 || stdenv.hostPlatform.isAarch32) "--ignore=test/t/test_gcc.py"} \
--ignore=test/t/test_chsh.py \
--ignore=test/t/test_ether_wake.py \
--ignore=test/t/test_ifdown.py \