2010-01-05 12:18:43 +01:00
|
|
|
{ nixpkgs ? ../../nixpkgs
|
|
|
|
, system ? builtins.currentSystem
|
|
|
|
}:
|
|
|
|
|
2011-04-27 15:16:33 +02:00
|
|
|
with import ../lib/testing.nix { inherit nixpkgs system; };
|
2010-01-05 12:18:43 +01:00
|
|
|
|
|
|
|
{
|
2010-10-07 18:58:07 +02:00
|
|
|
avahi = makeTest (import ./avahi.nix);
|
2010-05-23 14:02:54 +02:00
|
|
|
bittorrent = makeTest (import ./bittorrent.nix);
|
|
|
|
firefox = makeTest (import ./firefox.nix);
|
2011-03-11 14:38:52 +01:00
|
|
|
firewall = makeTest (import ./firewall.nix);
|
2010-05-23 14:02:54 +02:00
|
|
|
installer = makeTests (import ./installer.nix);
|
2011-02-19 20:21:19 +01:00
|
|
|
ipv6 = makeTest (import ./ipv6.nix);
|
2010-05-23 14:02:54 +02:00
|
|
|
kde4 = makeTest (import ./kde4.nix);
|
|
|
|
login = makeTest (import ./login.nix);
|
|
|
|
nat = makeTest (import ./nat.nix);
|
2010-06-08 18:02:22 +02:00
|
|
|
nfs = makeTest (import ./nfs.nix);
|
2010-05-23 14:02:54 +02:00
|
|
|
openssh = makeTest (import ./openssh.nix);
|
|
|
|
portmap = makeTest (import ./portmap.nix);
|
|
|
|
proxy = makeTest (import ./proxy.nix);
|
|
|
|
quake3 = makeTest (import ./quake3.nix);
|
2010-08-24 15:27:28 +02:00
|
|
|
remote_builds = makeTest (import ./remote-builds.nix);
|
2010-09-13 18:06:07 +02:00
|
|
|
simple = makeTest (import ./simple.nix);
|
2010-05-23 14:02:54 +02:00
|
|
|
subversion = makeTest (import ./subversion.nix);
|
|
|
|
trac = makeTest (import ./trac.nix);
|
2011-03-11 18:00:10 +01:00
|
|
|
xfce = makeTest (import ./xfce.nix);
|
2010-01-05 12:18:43 +01:00
|
|
|
}
|