summaryrefslogtreecommitdiffstats
path: root/nixos/release.nix
diff options
context:
space:
mode:
authorArnold Krille <arnold@arnoldarts.de>2016-01-31 21:45:05 +0100
committerArnold Krille <arnold@arnoldarts.de>2016-04-02 17:07:41 +0200
commit3b31c52d4b2784de33280feb9949f2ab8241ac50 (patch)
tree04c3d5b62606e4a0edf6de437f4898b9d115d406 /nixos/release.nix
parentaa46904490cadc55817ec32695c484026ddf3e15 (diff)
containers: Add more tests for ipv6 and hostbridge
A testcase each for - declarative ipv6-only container Seems odd to define the container IPs with their prefix length attached. There should be a better way… - declarative bridged container Also fix the ping test by waiting for the container to start When the ping was executed, the container might not have finished starting. Or the host-side of the container wasn't finished with config. Waiting for 2 seconds in between fixes this.
Diffstat (limited to 'nixos/release.nix')
-rw-r--r--nixos/release.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/nixos/release.nix b/nixos/release.nix
index 8a01b2685a78..2dc1b21daaf7 100644
--- a/nixos/release.nix
+++ b/nixos/release.nix
@@ -200,6 +200,8 @@ in rec {
tests.chromium = callSubTests tests/chromium.nix {};
tests.cjdns = callTest tests/cjdns.nix {};
tests.containers = callTest tests/containers.nix {};
+ tests.containers-ipv6 = callTest tests/containers-ipv6.nix {};
+ tests.containers-bridge = callTest tests/containers-bridge.nix {};
tests.docker = hydraJob (import tests/docker.nix { system = "x86_64-linux"; });
tests.dockerRegistry = hydraJob (import tests/docker-registry.nix { system = "x86_64-linux"; });
tests.dnscrypt-proxy = callTest tests/dnscrypt-proxy.nix { system = "x86_64-linux"; };