2012-03-02 13:38:22 +01:00
|
|
|
{ system ? builtins.currentSystem
|
2018-11-11 09:41:11 +01:00
|
|
|
, config ? {}
|
2010-10-22 00:50:12 +02:00
|
|
|
, networkExpr
|
|
|
|
}:
|
|
|
|
|
2011-04-27 15:01:42 +02:00
|
|
|
let nodes = import networkExpr; in
|
|
|
|
|
2018-11-11 09:41:11 +01:00
|
|
|
with import ../../../../lib/testing.nix {
|
|
|
|
inherit system;
|
2018-11-23 13:43:47 +01:00
|
|
|
pkgs = import ../../../../.. { inherit system config; };
|
2018-11-11 09:41:11 +01:00
|
|
|
};
|
2011-01-16 22:57:09 +01:00
|
|
|
|
2014-06-09 13:36:26 +02:00
|
|
|
(makeTest { inherit nodes; testScript = ""; }).driver
|