summary refs log tree commit diff
path: root/lib/tests/systems.nix
diff options
context:
space:
mode:
authorJohn Ericson <John.Ericson@Obsidian.Systems>2019-10-01 12:51:57 -0400
committerJohn Ericson <John.Ericson@Obsidian.Systems>2019-10-01 12:51:57 -0400
commit3098d652100d698d466a37ce7215065743d1038e (patch)
tree92b4ffbfddef0dd3a34d53581be2897aa323fbc3 /lib/tests/systems.nix
parent8a18c9f26148d1bcfcd9ba711d56e8bdb80899a1 (diff)
downloadnixpkgs-3098d652100d698d466a37ce7215065743d1038e.tar
nixpkgs-3098d652100d698d466a37ce7215065743d1038e.tar.gz
nixpkgs-3098d652100d698d466a37ce7215065743d1038e.tar.bz2
nixpkgs-3098d652100d698d466a37ce7215065743d1038e.tar.lz
nixpkgs-3098d652100d698d466a37ce7215065743d1038e.tar.xz
nixpkgs-3098d652100d698d466a37ce7215065743d1038e.tar.zst
nixpkgs-3098d652100d698d466a37ce7215065743d1038e.zip
lib: Add armv7a-linux to doubles.nix
This is needed for android.
Diffstat (limited to 'lib/tests/systems.nix')
-rw-r--r--lib/tests/systems.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/tests/systems.nix b/lib/tests/systems.nix
index 5748c09b564..818749442f9 100644
--- a/lib/tests/systems.nix
+++ b/lib/tests/systems.nix
@@ -14,7 +14,7 @@ let
 in with lib.systems.doubles; lib.runTests {
   testall = mseteq all (linux ++ darwin ++ freebsd ++ openbsd ++ netbsd ++ illumos ++ wasi ++ windows ++ embedded);
 
-  testarm = mseteq arm [ "armv5tel-linux" "armv6l-linux" "armv7l-linux" "arm-none" "armv7a-darwin" ];
+  testarm = mseteq arm [ "armv5tel-linux" "armv6l-linux" "armv7a-linux" "armv7l-linux" "arm-none" "armv7a-darwin" ];
   testi686 = mseteq i686 [ "i686-linux" "i686-freebsd" "i686-netbsd" "i686-openbsd" "i686-cygwin" "i686-windows" "i686-none" "i686-darwin" ];
   testmips = mseteq mips [ "mipsel-linux" ];
   testx86_64 = mseteq x86_64 [ "x86_64-linux" "x86_64-darwin" "x86_64-freebsd" "x86_64-openbsd" "x86_64-netbsd" "x86_64-cygwin" "x86_64-solaris" "x86_64-windows" "x86_64-none" ];
@@ -24,7 +24,7 @@ in with lib.systems.doubles; lib.runTests {
   testfreebsd = mseteq freebsd [ "i686-freebsd" "x86_64-freebsd" ];
   testgnu = mseteq gnu (linux /* ++ kfreebsd ++ ... */);
   testillumos = mseteq illumos [ "x86_64-solaris" ];
-  testlinux = mseteq linux [ "aarch64-linux" "armv5tel-linux" "armv6l-linux" "armv7l-linux" "i686-linux" "mipsel-linux" "riscv32-linux" "riscv64-linux" "x86_64-linux" "powerpc64le-linux" ];
+  testlinux = mseteq linux [ "aarch64-linux" "armv5tel-linux" "armv6l-linux" "armv7a-linux" "armv7l-linux" "i686-linux" "mipsel-linux" "riscv32-linux" "riscv64-linux" "x86_64-linux" "powerpc64le-linux" ];
   testnetbsd = mseteq netbsd [ "i686-netbsd" "x86_64-netbsd" ];
   testopenbsd = mseteq openbsd [ "i686-openbsd" "x86_64-openbsd" ];
   testwindows = mseteq windows [ "i686-cygwin" "x86_64-cygwin" "i686-windows" "x86_64-windows" ];