summary refs log tree commit diff
path: root/lib/tests/systems.nix
diff options
context:
space:
mode:
authorEmery Hemingway <ehmry@posteo.net>2020-08-04 17:50:55 +0200
committerehmry <ehmry@posteo.net>2020-08-04 18:08:56 +0200
commitccedb29f4b0b3a02f28be0a06cae480da2be432b (patch)
tree81ccc6fd2bc2a1a9bf8b5d8cb082323c3a67cc86 /lib/tests/systems.nix
parent5b543ef2148eb704beeb1db1d103add89eb29c90 (diff)
downloadnixpkgs-ccedb29f4b0b3a02f28be0a06cae480da2be432b.tar
nixpkgs-ccedb29f4b0b3a02f28be0a06cae480da2be432b.tar.gz
nixpkgs-ccedb29f4b0b3a02f28be0a06cae480da2be432b.tar.bz2
nixpkgs-ccedb29f4b0b3a02f28be0a06cae480da2be432b.tar.lz
nixpkgs-ccedb29f4b0b3a02f28be0a06cae480da2be432b.tar.xz
nixpkgs-ccedb29f4b0b3a02f28be0a06cae480da2be432b.tar.zst
nixpkgs-ccedb29f4b0b3a02f28be0a06cae480da2be432b.zip
Define a i686-genode system double
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 ea8ceedd43f..f691b2da316 100644
--- a/lib/tests/systems.nix
+++ b/lib/tests/systems.nix
@@ -15,14 +15,14 @@ in with lib.systems.doubles; lib.runTests {
   testall = mseteq all (linux ++ darwin ++ freebsd ++ openbsd ++ netbsd ++ illumos ++ wasi ++ windows ++ embedded ++ js ++ genode ++ redox);
 
   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" ];
+  testi686 = mseteq i686 [ "i686-linux" "i686-freebsd" "i686-genode" "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-genode" "x86_64-redox" "x86_64-openbsd" "x86_64-netbsd" "x86_64-cygwin" "x86_64-solaris" "x86_64-windows" "x86_64-none" ];
 
   testcygwin = mseteq cygwin [ "i686-cygwin" "x86_64-cygwin" ];
   testdarwin = mseteq darwin [ "x86_64-darwin" "i686-darwin" "aarch64-darwin" "armv7a-darwin" ];
   testfreebsd = mseteq freebsd [ "i686-freebsd" "x86_64-freebsd" ];
-  testgenode = mseteq genode [ "aarch64-genode" "x86_64-genode" ];
+  testgenode = mseteq genode [ "aarch64-genode" "i686-genode" "x86_64-genode" ];
   testredox = mseteq redox [ "x86_64-redox" ];
   testgnu = mseteq gnu (linux /* ++ kfreebsd ++ ... */);
   testillumos = mseteq illumos [ "x86_64-solaris" ];