From 1bf5fae96bbf0e28a50a46b9b57f2343947e6555 Mon Sep 17 00:00:00 2001 From: Will Dietz Date: Tue, 20 Feb 2018 13:46:10 -0600 Subject: [PATCH] release: only run novacomd test on x86_64-linux novacom and novacomd build on aarch64, but the daemon fails to start with something like: novacomd[547]: unhandled level 2 translation fault (11) at 0x00000000, esr 0x92000046 So, uh, nevermind that then. --- nixos/release.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/release.nix b/nixos/release.nix index 65491516c298..b9b6beb91f59 100644 --- a/nixos/release.nix +++ b/nixos/release.nix @@ -318,7 +318,7 @@ in rec { tests.nfs4 = callTest tests/nfs.nix { version = 4; }; tests.nginx = callTest tests/nginx.nix { }; tests.nghttpx = callTest tests/nghttpx.nix { }; - tests.novacomd = callTest tests/novacomd.nix { }; + tests.novacomd = callTestOnTheseSystems ["x86_64-linux"] tests/novacomd.nix { }; tests.leaps = callTest tests/leaps.nix { }; tests.nsd = callTest tests/nsd.nix {}; tests.openssh = callTest tests/openssh.nix {};