about summary refs log tree commit diff
diff options
context:
space:
mode:
authorworldofpeace <worldofpeace@protonmail.ch>2020-03-28 18:22:08 -0400
committerGitHub <noreply@github.com>2020-03-28 18:22:08 -0400
commitb1bffdf67fd415fdae81c470271959830eba89f7 (patch)
tree1ec2eba311281da4ade4e6c28971a6223f909e91
parentd5cfaf5c39bbc47b16951d8c1075fcd665a1f4ab (diff)
parentd85fb28414502e6c4f2618ea50abe4c9b7b0fdd0 (diff)
downloadnixlib-b1bffdf67fd415fdae81c470271959830eba89f7.tar
nixlib-b1bffdf67fd415fdae81c470271959830eba89f7.tar.gz
nixlib-b1bffdf67fd415fdae81c470271959830eba89f7.tar.bz2
nixlib-b1bffdf67fd415fdae81c470271959830eba89f7.tar.lz
nixlib-b1bffdf67fd415fdae81c470271959830eba89f7.tar.xz
nixlib-b1bffdf67fd415fdae81c470271959830eba89f7.tar.zst
nixlib-b1bffdf67fd415fdae81c470271959830eba89f7.zip
Merge pull request #83425 from xfix/mark-hibernation-test-as-broken-on-aarch
nixos/tests/hibernate: disable for platforms other than x86_64
-rw-r--r--nixos/tests/all-tests.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/nixos/tests/all-tests.nix b/nixos/tests/all-tests.nix
index b62a3e260aaa..9e04763bc779 100644
--- a/nixos/tests/all-tests.nix
+++ b/nixos/tests/all-tests.nix
@@ -121,7 +121,10 @@ in
   handbrake = handleTestOn ["x86_64-linux"] ./handbrake.nix {};
   haproxy = handleTest ./haproxy.nix {};
   hardened = handleTest ./hardened.nix {};
-  hibernate = handleTest ./hibernate.nix {};
+  # 9pnet_virtio used to mount /nix partition doesn't support
+  # hibernation. This test happens to work on x86_64-linux but
+  # not on other platforms.
+  hibernate = handleTestOn ["x86_64-linux"] ./hibernate.nix {};
   hitch = handleTest ./hitch {};
   hocker-fetchdocker = handleTest ./hocker-fetchdocker {};
   home-assistant = handleTest ./home-assistant.nix {};