aboutsummaryrefslogtreecommitdiff
path: root/lib/tests
diff options
context:
space:
mode:
authorJohn Ericson <git@JohnEricson.me>2020-03-19 10:38:22 -0400
committerGitHub <noreply@github.com>2020-03-19 10:38:22 -0400
commit19a0b38cbe352f964acafb139e2a37dd082c9e3d (patch)
treeee190aa7eae904f4dd763662113c325961c760f0 /lib/tests
parentd96bd3394b734487d1c3bfbac0e8f17465e03afe (diff)
parent7c0d3f6f70c7a55e8c988e9d6882820b9d26171d (diff)
Merge pull request #82882 from obsidiansystems/armv6-embedded
Misc fixes for armv6 bare metal cross
Diffstat (limited to 'lib/tests')
-rw-r--r--lib/tests/systems.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/tests/systems.nix b/lib/tests/systems.nix
index 6f52912994df..dd2b9575fc2c 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 ++ js);
- testarm = mseteq arm [ "armv5tel-linux" "armv6l-linux" "armv7a-linux" "armv7l-linux" "arm-none" "armv7a-darwin" ];
+ testarm = mseteq arm [ "armv5tel-linux" "armv6l-linux" "armv6l-none" "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" ];