vuls: init at 0.27.0 (#348530)
[NixPkgs.git] / nixos / tests / all-tests.nix
blob8ddcc779ea90c36bc5192fcd236c5826aefeb12f
1 { system,
2   pkgs,
4   # Projects the test configuration into a the desired value; usually
5   # the test runner: `config: config.test`.
6   callTest,
8 }:
9 # The return value of this function will be an attrset with arbitrary depth and
10 # the `anything` returned by callTest at its test leafs.
11 # The tests not supported by `system` will be replaced with `{}`, so that
12 # `passthru.tests` can contain links to those without breaking on architectures
13 # where said tests are unsupported.
14 # Example callTest that just extracts the derivation from the test:
15 #   callTest = t: t.test;
17 with pkgs.lib;
19 let
20   discoverTests = val:
21     if isAttrs val
22     then
23       if hasAttr "test" val then callTest val
24       else mapAttrs (n: s: if n == "passthru" then s else discoverTests s) val
25     else if isFunction val
26       then
27         # Tests based on make-test-python.nix will return the second lambda
28         # in that file, which are then forwarded to the test definition
29         # following the `import make-test-python.nix` expression
30         # (if it is a function).
31         discoverTests (val { inherit system pkgs; })
32       else val;
33   handleTest = path: args:
34     discoverTests (import path ({ inherit system pkgs; } // args));
35   handleTestOn = systems: path: args:
36     if elem system systems then handleTest path args
37     else {};
39   nixosLib = import ../lib {
40     # Experimental features need testing too, but there's no point in warning
41     # about it, so we enable the feature flag.
42     featureFlags.minimalModules = {};
43   };
44   evalMinimalConfig = module: nixosLib.evalModules { modules = [ module ]; };
46   inherit
47     (rec {
48       doRunTest = arg: ((import ../lib/testing-python.nix { inherit system pkgs; }).evalTest {
49         imports = [ arg readOnlyPkgs ];
50       }).config.result;
51       findTests = tree:
52         if tree?recurseForDerivations && tree.recurseForDerivations
53         then
54           mapAttrs
55             (k: findTests)
56             (builtins.removeAttrs tree ["recurseForDerivations"])
57         else callTest tree;
59       runTest = arg: let r = doRunTest arg; in findTests r;
60       runTestOn = systems: arg:
61         if elem system systems then runTest arg
62         else {};
63     })
64     runTest
65     runTestOn
66     ;
68   # Using a single instance of nixpkgs makes test evaluation faster.
69   # To make sure we don't accidentally depend on a modified pkgs, we make the
70   # related options read-only. We need to test the right configuration.
71   #
72   # If your service depends on a nixpkgs setting, first try to avoid that, but
73   # otherwise, you can remove the readOnlyPkgs import and test your service as
74   # usual.
75   readOnlyPkgs =
76     # TODO: We currently accept this for nixosTests, so that the `pkgs` argument
77     #       is consistent with `pkgs` in `pkgs.nixosTests`. Can we reinitialize
78     #       it with `allowAliases = false`?
79     # warnIf pkgs.config.allowAliases "nixosTests: pkgs includes aliases."
80     {
81       _file = "${__curPos.file} readOnlyPkgs";
82       _class = "nixosTest";
83       node.pkgs = pkgs.pkgsLinux;
84     };
86 in {
88   # Testing the test driver
89   nixos-test-driver = {
90     extra-python-packages = handleTest ./nixos-test-driver/extra-python-packages.nix {};
91     lib-extend = handleTestOn [ "x86_64-linux" "aarch64-linux" ] ./nixos-test-driver/lib-extend.nix {};
92     node-name = runTest ./nixos-test-driver/node-name.nix;
93     busybox = runTest ./nixos-test-driver/busybox.nix;
94     driver-timeout = pkgs.runCommand "ensure-timeout-induced-failure" {
95       failed = pkgs.testers.testBuildFailure ((runTest ./nixos-test-driver/timeout.nix).config.rawTestDerivation);
96     } ''
97       grep -F "timeout reached; test terminating" $failed/testBuildFailure.log
98       # The program will always be terminated by SIGTERM (143) if it waits for the deadline thread.
99       [[ 143 = $(cat $failed/testBuildFailure.exit) ]]
100       touch $out
101     '';
102   };
104   # NixOS vm tests and non-vm unit tests
106   _3proxy = runTest ./3proxy.nix;
107   aaaaxy = runTest ./aaaaxy.nix;
108   acme = runTest ./acme.nix;
109   acme-dns = handleTest ./acme-dns.nix {};
110   adguardhome = runTest ./adguardhome.nix;
111   aesmd = runTestOn ["x86_64-linux"] ./aesmd.nix;
112   agate = runTest ./web-servers/agate.nix;
113   agda = handleTest ./agda.nix {};
114   airsonic = handleTest ./airsonic.nix {};
115   akkoma = handleTestOn [ "x86_64-linux" "aarch64-linux" ] ./akkoma.nix {};
116   akkoma-confined = handleTestOn [ "x86_64-linux" "aarch64-linux" ] ./akkoma.nix { confined = true; };
117   alice-lg = handleTest ./alice-lg.nix {};
118   alloy = handleTest ./alloy.nix {};
119   allTerminfo = handleTest ./all-terminfo.nix {};
120   alps = handleTest ./alps.nix {};
121   amazon-init-shell = handleTest ./amazon-init-shell.nix {};
122   amazon-ssm-agent = handleTest ./amazon-ssm-agent.nix {};
123   amd-sev = runTest ./amd-sev.nix;
124   anbox = runTest ./anbox.nix;
125   angie-api = handleTest ./angie-api.nix {};
126   anki-sync-server = handleTest ./anki-sync-server.nix {};
127   anuko-time-tracker = handleTest ./anuko-time-tracker.nix {};
128   apcupsd = handleTest ./apcupsd.nix {};
129   apfs = runTest ./apfs.nix;
130   appliance-repart-image = runTest ./appliance-repart-image.nix;
131   appliance-repart-image-verity-store = runTest ./appliance-repart-image-verity-store.nix;
132   apparmor = handleTest ./apparmor.nix {};
133   archi = handleTest ./archi.nix {};
134   aria2 = handleTest ./aria2.nix {};
135   armagetronad = handleTest ./armagetronad.nix {};
136   artalk = handleTest ./artalk.nix {};
137   atd = handleTest ./atd.nix {};
138   atop = handleTest ./atop.nix {};
139   atticd = runTest ./atticd.nix;
140   atuin = handleTest ./atuin.nix {};
141   audiobookshelf = handleTest ./audiobookshelf.nix {};
142   auth-mysql = handleTest ./auth-mysql.nix {};
143   authelia = handleTest ./authelia.nix {};
144   avahi = handleTest ./avahi.nix {};
145   avahi-with-resolved = handleTest ./avahi.nix { networkd = true; };
146   ayatana-indicators = runTest ./ayatana-indicators.nix;
147   babeld = handleTest ./babeld.nix {};
148   bazarr = handleTest ./bazarr.nix {};
149   bcachefs = handleTestOn ["x86_64-linux" "aarch64-linux"] ./bcachefs.nix {};
150   beanstalkd = handleTest ./beanstalkd.nix {};
151   bees = handleTest ./bees.nix {};
152   benchexec = handleTest ./benchexec.nix {};
153   binary-cache = handleTest ./binary-cache.nix {};
154   bind = handleTest ./bind.nix {};
155   bird = handleTest ./bird.nix {};
156   birdwatcher = handleTest ./birdwatcher.nix {};
157   bitcoind = handleTest ./bitcoind.nix {};
158   bittorrent = handleTest ./bittorrent.nix {};
159   blockbook-frontend = handleTest ./blockbook-frontend.nix {};
160   blocky = handleTest ./blocky.nix {};
161   boot = handleTestOn ["x86_64-linux" "aarch64-linux"] ./boot.nix {};
162   bootspec = handleTestOn ["x86_64-linux"] ./bootspec.nix {};
163   boot-stage1 = handleTest ./boot-stage1.nix {};
164   borgbackup = handleTest ./borgbackup.nix {};
165   borgmatic = handleTest ./borgmatic.nix {};
166   botamusique = handleTest ./botamusique.nix {};
167   bpf = handleTestOn ["x86_64-linux" "aarch64-linux"] ./bpf.nix {};
168   bpftune = handleTest ./bpftune.nix {};
169   breitbandmessung = handleTest ./breitbandmessung.nix {};
170   brscan5 = handleTest ./brscan5.nix {};
171   btrbk = handleTest ./btrbk.nix {};
172   btrbk-doas = handleTest ./btrbk-doas.nix {};
173   btrbk-no-timer = handleTest ./btrbk-no-timer.nix {};
174   btrbk-section-order = handleTest ./btrbk-section-order.nix {};
175   budgie = handleTest ./budgie.nix {};
176   buildbot = handleTest ./buildbot.nix {};
177   buildkite-agents = handleTest ./buildkite-agents.nix {};
178   c2fmzq = handleTest ./c2fmzq.nix {};
179   caddy = handleTest ./caddy.nix {};
180   cadvisor = handleTestOn ["x86_64-linux"] ./cadvisor.nix {};
181   cage = handleTest ./cage.nix {};
182   cagebreak = handleTest ./cagebreak.nix {};
183   calibre-web = handleTest ./calibre-web.nix {};
184   calibre-server = handleTest ./calibre-server.nix {};
185   castopod = handleTest ./castopod.nix {};
186   cassandra_3_0 = handleTest ./cassandra.nix { testPackage = pkgs.cassandra_3_0; };
187   cassandra_3_11 = handleTest ./cassandra.nix { testPackage = pkgs.cassandra_3_11; };
188   cassandra_4 = handleTest ./cassandra.nix { testPackage = pkgs.cassandra_4; };
189   centrifugo = runTest ./centrifugo.nix;
190   ceph-multi-node = handleTestOn [ "aarch64-linux" "x86_64-linux" ] ./ceph-multi-node.nix {};
191   ceph-single-node = handleTestOn [ "aarch64-linux" "x86_64-linux" ] ./ceph-single-node.nix {};
192   ceph-single-node-bluestore = handleTestOn [ "aarch64-linux" "x86_64-linux" ] ./ceph-single-node-bluestore.nix {};
193   ceph-single-node-bluestore-dmcrypt = handleTestOn [ "aarch64-linux" "x86_64-linux" ] ./ceph-single-node-bluestore-dmcrypt.nix {};
194   certmgr = handleTest ./certmgr.nix {};
195   cfssl = handleTestOn ["aarch64-linux" "x86_64-linux"] ./cfssl.nix {};
196   cgit = handleTest ./cgit.nix {};
197   charliecloud = handleTest ./charliecloud.nix {};
198   chromadb = runTest ./chromadb.nix;
199   chromium = (handleTestOn ["aarch64-linux" "x86_64-linux"] ./chromium.nix {}).stable or {};
200   chrony = handleTestOn ["aarch64-linux" "x86_64-linux"] ./chrony.nix {};
201   chrony-ptp = handleTestOn ["aarch64-linux" "x86_64-linux"] ./chrony-ptp.nix {};
202   cinnamon = handleTest ./cinnamon.nix {};
203   cinnamon-wayland = handleTest ./cinnamon-wayland.nix {};
204   cjdns = handleTest ./cjdns.nix {};
205   clatd = handleTest ./clatd.nix {};
206   clickhouse = handleTest ./clickhouse.nix {};
207   cloud-init = handleTest ./cloud-init.nix {};
208   cloud-init-hostname = handleTest ./cloud-init-hostname.nix {};
209   cloudlog = handleTest ./cloudlog.nix {};
210   cntr = handleTestOn ["aarch64-linux" "x86_64-linux"] ./cntr.nix {};
211   cockpit = handleTest ./cockpit.nix {};
212   cockroachdb = handleTestOn ["x86_64-linux"] ./cockroachdb.nix {};
213   code-server = handleTest ./code-server.nix {};
214   coder = handleTest ./coder.nix {};
215   collectd = handleTest ./collectd.nix {};
216   commafeed = handleTest ./commafeed.nix {};
217   connman = handleTest ./connman.nix {};
218   consul = handleTest ./consul.nix {};
219   consul-template = handleTest ./consul-template.nix {};
220   containers-bridge = handleTest ./containers-bridge.nix {};
221   containers-custom-pkgs.nix = handleTest ./containers-custom-pkgs.nix {};
222   containers-ephemeral = handleTest ./containers-ephemeral.nix {};
223   containers-extra_veth = handleTest ./containers-extra_veth.nix {};
224   containers-hosts = handleTest ./containers-hosts.nix {};
225   containers-imperative = handleTest ./containers-imperative.nix {};
226   containers-ip = handleTest ./containers-ip.nix {};
227   containers-macvlans = handleTest ./containers-macvlans.nix {};
228   containers-names = handleTest ./containers-names.nix {};
229   containers-nested = handleTest ./containers-nested.nix {};
230   containers-physical_interfaces = handleTest ./containers-physical_interfaces.nix {};
231   containers-portforward = handleTest ./containers-portforward.nix {};
232   containers-reloadable = handleTest ./containers-reloadable.nix {};
233   containers-require-bind-mounts = handleTest ./containers-require-bind-mounts.nix {};
234   containers-restart_networking = handleTest ./containers-restart_networking.nix {};
235   containers-tmpfs = handleTest ./containers-tmpfs.nix {};
236   containers-unified-hierarchy = handleTest ./containers-unified-hierarchy.nix {};
237   convos = handleTest ./convos.nix {};
238   corerad = handleTest ./corerad.nix {};
239   coturn = handleTest ./coturn.nix {};
240   couchdb = handleTest ./couchdb.nix {};
241   crabfit = handleTest ./crabfit.nix {};
242   cri-o = handleTestOn ["aarch64-linux" "x86_64-linux"] ./cri-o.nix {};
243   cryptpad = runTest ./cryptpad.nix;
244   cups-pdf = handleTest ./cups-pdf.nix {};
245   curl-impersonate = handleTest ./curl-impersonate.nix {};
246   custom-ca = handleTest ./custom-ca.nix {};
247   croc = handleTest ./croc.nix {};
248   darling = handleTest ./darling.nix {};
249   darling-dmg = runTest ./darling-dmg.nix;
250   dae = handleTest ./dae.nix {};
251   davis = handleTest ./davis.nix {};
252   db-rest = handleTest ./db-rest.nix {};
253   dconf = handleTest ./dconf.nix {};
254   ddns-updater = handleTest ./ddns-updater.nix {};
255   deconz = handleTest ./deconz.nix {};
256   deepin = handleTest ./deepin.nix {};
257   deluge = handleTest ./deluge.nix {};
258   dendrite = handleTest ./matrix/dendrite.nix {};
259   dependency-track = handleTest ./dependency-track.nix {};
260   devpi-server = handleTest ./devpi-server.nix {};
261   dex-oidc = handleTest ./dex-oidc.nix {};
262   dhparams = handleTest ./dhparams.nix {};
263   disable-installer-tools = handleTest ./disable-installer-tools.nix {};
264   discourse = handleTest ./discourse.nix {};
265   dnscrypt-proxy2 = handleTestOn ["x86_64-linux"] ./dnscrypt-proxy2.nix {};
266   dnsdist = import ./dnsdist.nix { inherit pkgs runTest; };
267   doas = handleTest ./doas.nix {};
268   docker = handleTestOn ["aarch64-linux" "x86_64-linux"] ./docker.nix {};
269   docker-rootless = handleTestOn ["aarch64-linux" "x86_64-linux"] ./docker-rootless.nix {};
270   docker-registry = handleTest ./docker-registry.nix {};
271   docker-tools = handleTestOn ["x86_64-linux"] ./docker-tools.nix {};
272   docker-tools-nix-shell = runTest ./docker-tools-nix-shell.nix;
273   docker-tools-cross = handleTestOn ["x86_64-linux" "aarch64-linux"] ./docker-tools-cross.nix {};
274   docker-tools-overlay = handleTestOn ["x86_64-linux"] ./docker-tools-overlay.nix {};
275   documize = handleTest ./documize.nix {};
276   documentation = pkgs.callPackage ../modules/misc/documentation/test.nix { inherit nixosLib; };
277   doh-proxy-rust = handleTest ./doh-proxy-rust.nix {};
278   dokuwiki = handleTest ./dokuwiki.nix {};
279   dolibarr = handleTest ./dolibarr.nix {};
280   domination = handleTest ./domination.nix {};
281   dovecot = handleTest ./dovecot.nix {};
282   drawterm = discoverTests (import ./drawterm.nix);
283   drbd = handleTest ./drbd.nix {};
284   druid = handleTestOn [ "x86_64-linux" ] ./druid {};
285   dublin-traceroute = handleTest ./dublin-traceroute.nix {};
286   earlyoom = handleTestOn ["x86_64-linux"] ./earlyoom.nix {};
287   early-mount-options = handleTest ./early-mount-options.nix {};
288   ec2-config = (handleTestOn ["x86_64-linux"] ./ec2.nix {}).boot-ec2-config or {};
289   ec2-nixops = (handleTestOn ["x86_64-linux"] ./ec2.nix {}).boot-ec2-nixops or {};
290   ecryptfs = handleTest ./ecryptfs.nix {};
291   fscrypt = handleTest ./fscrypt.nix {};
292   fastnetmon-advanced = runTest ./fastnetmon-advanced.nix;
293   eintopf = handleTest ./eintopf.nix {};
294   ejabberd = handleTest ./xmpp/ejabberd.nix {};
295   elk = handleTestOn ["x86_64-linux"] ./elk.nix {};
296   emacs-daemon = handleTest ./emacs-daemon.nix {};
297   endlessh = handleTest ./endlessh.nix {};
298   endlessh-go = handleTest ./endlessh-go.nix {};
299   engelsystem = handleTest ./engelsystem.nix {};
300   enlightenment = handleTest ./enlightenment.nix {};
301   env = handleTest ./env.nix {};
302   envfs = handleTest ./envfs.nix {};
303   envoy = handleTest ./envoy.nix {};
304   ergo = handleTest ./ergo.nix {};
305   ergochat = handleTest ./ergochat.nix {};
306   eris-server = handleTest ./eris-server.nix {};
307   esphome = handleTest ./esphome.nix {};
308   etc = pkgs.callPackage ../modules/system/etc/test.nix { inherit evalMinimalConfig; };
309   activation = pkgs.callPackage ../modules/system/activation/test.nix { };
310   activation-lib = pkgs.callPackage ../modules/system/activation/lib/test.nix { };
311   activation-var = runTest ./activation/var.nix;
312   activation-nix-channel = runTest ./activation/nix-channel.nix;
313   activation-etc-overlay-mutable = runTest ./activation/etc-overlay-mutable.nix;
314   activation-etc-overlay-immutable = runTest ./activation/etc-overlay-immutable.nix;
315   activation-perlless = runTest ./activation/perlless.nix;
316   etcd = handleTestOn [ "aarch64-linux" "x86_64-linux" ] ./etcd/etcd.nix {};
317   etcd-cluster = handleTestOn [ "aarch64-linux" "x86_64-linux" ] ./etcd/etcd-cluster.nix {};
318   etebase-server = handleTest ./etebase-server.nix {};
319   etesync-dav = handleTest ./etesync-dav.nix {};
320   evcc = handleTest ./evcc.nix {};
321   fail2ban = handleTest ./fail2ban.nix { };
322   fakeroute = handleTest ./fakeroute.nix {};
323   fancontrol = handleTest ./fancontrol.nix {};
324   fanout = handleTest ./fanout.nix {};
325   fcitx5 = handleTest ./fcitx5 {};
326   fedimintd = runTest ./fedimintd.nix;
327   fenics = handleTest ./fenics.nix {};
328   ferm = handleTest ./ferm.nix {};
329   ferretdb = handleTest ./ferretdb.nix {};
330   filesender = handleTest ./filesender.nix {};
331   filesystems-overlayfs = runTest ./filesystems-overlayfs.nix;
332   firefly-iii = handleTest ./firefly-iii.nix {};
333   firefly-iii-data-importer = handleTest ./firefly-iii-data-importer.nix {};
334   firefox = handleTest ./firefox.nix { firefoxPackage = pkgs.firefox; };
335   firefox-beta = handleTest ./firefox.nix { firefoxPackage = pkgs.firefox-beta; };
336   firefox-devedition = handleTest ./firefox.nix { firefoxPackage = pkgs.firefox-devedition; };
337   firefox-esr    = handleTest ./firefox.nix { firefoxPackage = pkgs.firefox-esr; }; # used in `tested` job
338   firefox-esr-115 = handleTest ./firefox.nix { firefoxPackage = pkgs.firefox-esr-115; };
339   firefox-esr-128 = handleTest ./firefox.nix { firefoxPackage = pkgs.firefox-esr-128; };
340   firefoxpwa = handleTest ./firefoxpwa.nix {};
341   firejail = handleTest ./firejail.nix {};
342   firewall = handleTest ./firewall.nix { nftables = false; };
343   firewall-nftables = handleTest ./firewall.nix { nftables = true; };
344   fish = handleTest ./fish.nix {};
345   flannel = handleTestOn ["x86_64-linux"] ./flannel.nix {};
346   flaresolverr = handleTest ./flaresolverr.nix {};
347   flood = handleTest ./flood.nix {};
348   floorp = handleTest ./firefox.nix { firefoxPackage = pkgs.floorp; };
349   fluentd = handleTest ./fluentd.nix {};
350   fluidd = handleTest ./fluidd.nix {};
351   fontconfig-default-fonts = handleTest ./fontconfig-default-fonts.nix {};
352   forgejo = handleTest ./forgejo.nix { forgejoPackage = pkgs.forgejo; };
353   forgejo-lts = handleTest ./forgejo.nix { forgejoPackage = pkgs.forgejo-lts; };
354   freenet = handleTest ./freenet.nix {};
355   freeswitch = handleTest ./freeswitch.nix {};
356   freetube = discoverTests (import ./freetube.nix);
357   freshrss-extensions = handleTest ./freshrss-extensions.nix {};
358   freshrss-sqlite = handleTest ./freshrss-sqlite.nix {};
359   freshrss-pgsql = handleTest ./freshrss-pgsql.nix {};
360   freshrss-http-auth = handleTest ./freshrss-http-auth.nix {};
361   freshrss-none-auth = handleTest ./freshrss-none-auth.nix {};
362   frigate = handleTest ./frigate.nix {};
363   frp = handleTest ./frp.nix {};
364   frr = handleTest ./frr.nix {};
365   fsck = handleTest ./fsck.nix {};
366   fsck-systemd-stage-1 = handleTest ./fsck.nix { systemdStage1 = true; };
367   ft2-clone = handleTest ./ft2-clone.nix {};
368   legit = handleTest ./legit.nix {};
369   mimir = handleTest ./mimir.nix {};
370   gancio = handleTest ./gancio.nix {};
371   garage = handleTest ./garage {};
372   gatus = runTest ./gatus.nix;
373   gemstash = handleTest ./gemstash.nix {};
374   geoserver = runTest ./geoserver.nix;
375   gerrit = handleTest ./gerrit.nix {};
376   geth = handleTest ./geth.nix {};
377   ghostunnel = handleTest ./ghostunnel.nix {};
378   gitdaemon = handleTest ./gitdaemon.nix {};
379   gitea = handleTest ./gitea.nix { giteaPackage = pkgs.gitea; };
380   github-runner = handleTest ./github-runner.nix {};
381   gitlab = runTest ./gitlab.nix;
382   gitolite = handleTest ./gitolite.nix {};
383   gitolite-fcgiwrap = handleTest ./gitolite-fcgiwrap.nix {};
384   glance = runTest ./glance.nix;
385   glusterfs = handleTest ./glusterfs.nix {};
386   gnome = handleTest ./gnome.nix {};
387   gnome-extensions = handleTest ./gnome-extensions.nix {};
388   gnome-flashback = handleTest ./gnome-flashback.nix {};
389   gnome-xorg = handleTest ./gnome-xorg.nix {};
390   gns3-server = handleTest ./gns3-server.nix {};
391   gnupg = handleTest ./gnupg.nix {};
392   goatcounter = handleTest ./goatcounter.nix {};
393   go-neb = handleTest ./go-neb.nix {};
394   gobgpd = handleTest ./gobgpd.nix {};
395   gocd-agent = handleTest ./gocd-agent.nix {};
396   gocd-server = handleTest ./gocd-server.nix {};
397   gollum = handleTest ./gollum.nix {};
398   gonic = handleTest ./gonic.nix {};
399   google-oslogin = handleTest ./google-oslogin {};
400   goss = handleTest ./goss.nix {};
401   gotenberg = handleTest ./gotenberg.nix {};
402   gotify-server = handleTest ./gotify-server.nix {};
403   gotosocial = runTest ./web-apps/gotosocial.nix;
404   grafana = handleTest ./grafana {};
405   grafana-agent = handleTest ./grafana-agent.nix {};
406   graphite = handleTest ./graphite.nix {};
407   graylog = handleTest ./graylog.nix {};
408   greetd-no-shadow = handleTest ./greetd-no-shadow.nix {};
409   grocy = handleTest ./grocy.nix {};
410   grow-partition = runTest ./grow-partition.nix;
411   grub = handleTest ./grub.nix {};
412   guacamole-server = handleTest ./guacamole-server.nix {};
413   guix = handleTest ./guix {};
414   gvisor = handleTest ./gvisor.nix {};
415   hadoop = import ./hadoop { inherit handleTestOn; package=pkgs.hadoop; };
416   hadoop_3_3 = import ./hadoop { inherit handleTestOn; package=pkgs.hadoop_3_3; };
417   hadoop2 = import ./hadoop { inherit handleTestOn; package=pkgs.hadoop2; };
418   haka = handleTest ./haka.nix {};
419   haste-server = handleTest ./haste-server.nix {};
420   haproxy = handleTest ./haproxy.nix {};
421   hardened = handleTest ./hardened.nix {};
422   harmonia = runTest ./harmonia.nix;
423   headscale = handleTest ./headscale.nix {};
424   healthchecks = handleTest ./web-apps/healthchecks.nix {};
425   hbase2 = handleTest ./hbase.nix { package=pkgs.hbase2; };
426   hbase_2_5 = handleTest ./hbase.nix { package=pkgs.hbase_2_5; };
427   hbase_2_4 = handleTest ./hbase.nix { package=pkgs.hbase_2_4; };
428   hbase3 = handleTest ./hbase.nix { package=pkgs.hbase3; };
429   hddfancontrol = handleTest ./hddfancontrol.nix {};
430   hedgedoc = handleTest ./hedgedoc.nix {};
431   herbstluftwm = handleTest ./herbstluftwm.nix {};
432   homebox = handleTest ./homebox.nix {};
433   homepage-dashboard = handleTest ./homepage-dashboard.nix {};
434   honk = runTest ./honk.nix;
435   installed-tests = pkgs.recurseIntoAttrs (handleTest ./installed-tests {});
436   invidious = handleTest ./invidious.nix {};
437   isolate = handleTest ./isolate.nix {};
438   livebook-service = handleTest ./livebook-service.nix {};
439   pyload = handleTest ./pyload.nix {};
440   oci-containers = handleTestOn ["aarch64-linux" "x86_64-linux"] ./oci-containers.nix {};
441   odoo = handleTest ./odoo.nix {};
442   odoo16 = handleTest ./odoo.nix { package = pkgs.odoo16; };
443   odoo15 = handleTest ./odoo.nix { package = pkgs.odoo15; };
444   # 9pnet_virtio used to mount /nix partition doesn't support
445   # hibernation. This test happens to work on x86_64-linux but
446   # not on other platforms.
447   hibernate = handleTestOn ["x86_64-linux"] ./hibernate.nix {};
448   hibernate-systemd-stage-1 = handleTestOn ["x86_64-linux"] ./hibernate.nix { systemdStage1 = true; };
449   hitch = handleTest ./hitch {};
450   hledger-web = handleTest ./hledger-web.nix {};
451   hockeypuck = handleTest ./hockeypuck.nix { };
452   home-assistant = handleTest ./home-assistant.nix {};
453   hostname = handleTest ./hostname.nix {};
454   hound = handleTest ./hound.nix {};
455   hub = handleTest ./git/hub.nix {};
456   hydra = handleTest ./hydra {};
457   i3wm = handleTest ./i3wm.nix {};
458   icingaweb2 = handleTest ./icingaweb2.nix {};
459   ifm = handleTest ./ifm.nix {};
460   iftop = handleTest ./iftop.nix {};
461   immich = handleTest ./web-apps/immich.nix {};
462   incron = handleTest ./incron.nix {};
463   incus = pkgs.recurseIntoAttrs (handleTest ./incus { inherit handleTestOn; inherit (pkgs) incus; });
464   incus-lts = pkgs.recurseIntoAttrs (handleTest ./incus { inherit handleTestOn; });
465   influxdb = handleTest ./influxdb.nix {};
466   influxdb2 = handleTest ./influxdb2.nix {};
467   initrd-network-openvpn = handleTestOn [ "x86_64-linux" "i686-linux" ] ./initrd-network-openvpn {};
468   initrd-network-ssh = handleTest ./initrd-network-ssh {};
469   initrd-luks-empty-passphrase = handleTest ./initrd-luks-empty-passphrase.nix {};
470   initrdNetwork = handleTest ./initrd-network.nix {};
471   initrd-secrets = handleTest ./initrd-secrets.nix {};
472   initrd-secrets-changing = handleTest ./initrd-secrets-changing.nix {};
473   input-remapper = handleTest ./input-remapper.nix {};
474   inspircd = handleTest ./inspircd.nix {};
475   installer = handleTest ./installer.nix {};
476   installer-systemd-stage-1 = handleTest ./installer-systemd-stage-1.nix {};
477   intune = handleTest ./intune.nix {};
478   invoiceplane = handleTest ./invoiceplane.nix {};
479   iodine = handleTest ./iodine.nix {};
480   ipv6 = handleTest ./ipv6.nix {};
481   iscsi-multipath-root = handleTest ./iscsi-multipath-root.nix {};
482   iscsi-root = handleTest ./iscsi-root.nix {};
483   isso = handleTest ./isso.nix {};
484   jackett = handleTest ./jackett.nix {};
485   jellyfin = handleTest ./jellyfin.nix {};
486   jenkins = handleTest ./jenkins.nix {};
487   jenkins-cli = handleTest ./jenkins-cli.nix {};
488   jibri = handleTest ./jibri.nix {};
489   jirafeau = handleTest ./jirafeau.nix {};
490   jitsi-meet = handleTest ./jitsi-meet.nix {};
491   jool = import ./jool.nix { inherit pkgs runTest; };
492   jotta-cli = handleTest ./jotta-cli.nix {};
493   k3s = handleTest ./k3s {};
494   kafka = handleTest ./kafka.nix {};
495   kanidm = handleTest ./kanidm.nix {};
496   kanidm-provisioning = handleTest ./kanidm-provisioning.nix {};
497   karma = handleTest ./karma.nix {};
498   kavita = handleTest ./kavita.nix {};
499   kbd-setfont-decompress = handleTest ./kbd-setfont-decompress.nix {};
500   kbd-update-search-paths-patch = handleTest ./kbd-update-search-paths-patch.nix {};
501   kea = handleTest ./kea.nix {};
502   keepalived = handleTest ./keepalived.nix {};
503   keepassxc = handleTest ./keepassxc.nix {};
504   kerberos = handleTest ./kerberos/default.nix {};
505   kernel-generic = handleTest ./kernel-generic.nix {};
506   kernel-latest-ath-user-regd = handleTest ./kernel-latest-ath-user-regd.nix {};
507   kernel-rust = handleTest ./kernel-rust.nix {};
508   keter = handleTest ./keter.nix {};
509   kexec = handleTest ./kexec.nix {};
510   keycloak = discoverTests (import ./keycloak.nix);
511   keyd = handleTest ./keyd.nix {};
512   keymap = handleTest ./keymap.nix {};
513   knot = handleTest ./knot.nix {};
514   komga = handleTest ./komga.nix {};
515   krb5 = discoverTests (import ./krb5);
516   ksm = handleTest ./ksm.nix {};
517   kthxbye = handleTest ./kthxbye.nix {};
518   kubernetes = handleTestOn ["x86_64-linux"] ./kubernetes {};
519   kubo = import ./kubo { inherit recurseIntoAttrs runTest; };
520   ladybird = handleTest ./ladybird.nix {};
521   languagetool = handleTest ./languagetool.nix {};
522   lanraragi = handleTest ./lanraragi.nix {};
523   latestKernel.login = handleTest ./login.nix { latestKernel = true; };
524   leaps = handleTest ./leaps.nix {};
525   lemmy = handleTest ./lemmy.nix {};
526   libinput = handleTest ./libinput.nix {};
527   librenms = handleTest ./librenms.nix {};
528   libresprite = handleTest ./libresprite.nix {};
529   libreswan = runTest ./libreswan.nix;
530   libreswan-nat = runTest ./libreswan-nat.nix;
531   librewolf = handleTest ./firefox.nix { firefoxPackage = pkgs.librewolf; };
532   libuiohook = handleTest ./libuiohook.nix {};
533   libvirtd = handleTest ./libvirtd.nix {};
534   lidarr = handleTest ./lidarr.nix {};
535   lightdm = handleTest ./lightdm.nix {};
536   lighttpd = handleTest ./lighttpd.nix {};
537   limesurvey = handleTest ./limesurvey.nix {};
538   listmonk = handleTestOn [ "x86_64-linux" "aarch64-linux" ] ./listmonk.nix {};
539   litestream = handleTest ./litestream.nix {};
540   lldap = handleTest ./lldap.nix {};
541   localsend = handleTest ./localsend.nix {};
542   locate = handleTest ./locate.nix {};
543   login = handleTest ./login.nix {};
544   logrotate = handleTest ./logrotate.nix {};
545   loki = handleTest ./loki.nix {};
546   luks = handleTest ./luks.nix {};
547   lvm2 = handleTest ./lvm2 {};
548   lxc = handleTest ./lxc {};
549   lxd = pkgs.recurseIntoAttrs (handleTest ./lxd { inherit handleTestOn; });
550   lxd-image-server = handleTest ./lxd-image-server.nix {};
551   #logstash = handleTest ./logstash.nix {};
552   lomiri = discoverTests (import ./lomiri.nix);
553   lomiri-calculator-app = runTest ./lomiri-calculator-app.nix;
554   lomiri-camera-app = runTest ./lomiri-camera-app.nix;
555   lomiri-clock-app = runTest ./lomiri-clock-app.nix;
556   lomiri-docviewer-app = runTest ./lomiri-docviewer-app.nix;
557   lomiri-filemanager-app = runTest ./lomiri-filemanager-app.nix;
558   lomiri-gallery-app = runTest ./lomiri-gallery-app.nix;
559   lomiri-system-settings = handleTest ./lomiri-system-settings.nix {};
560   lorri = handleTest ./lorri/default.nix {};
561   ly = handleTest ./ly.nix {};
562   maddy = discoverTests (import ./maddy { inherit handleTest; });
563   maestral = handleTest ./maestral.nix {};
564   magic-wormhole-mailbox-server = handleTest ./magic-wormhole-mailbox-server.nix {};
565   magnetico = handleTest ./magnetico.nix {};
566   mailcatcher = handleTest ./mailcatcher.nix {};
567   mailhog = handleTest ./mailhog.nix {};
568   mailpit = handleTest ./mailpit.nix {};
569   mailman = handleTest ./mailman.nix {};
570   man = handleTest ./man.nix {};
571   mariadb-galera = handleTest ./mysql/mariadb-galera.nix {};
572   mastodon = pkgs.recurseIntoAttrs (handleTest ./web-apps/mastodon { inherit handleTestOn; });
573   pixelfed = discoverTests (import ./web-apps/pixelfed { inherit handleTestOn; });
574   mate = handleTest ./mate.nix {};
575   mate-wayland = handleTest ./mate-wayland.nix {};
576   matter-server = handleTest ./matter-server.nix {};
577   matomo = handleTest ./matomo.nix {};
578   matrix-appservice-irc = runTest ./matrix/appservice-irc.nix;
579   matrix-conduit = handleTest ./matrix/conduit.nix {};
580   matrix-synapse = handleTest ./matrix/synapse.nix {};
581   matrix-synapse-workers = handleTest ./matrix/synapse-workers.nix {};
582   mautrix-meta-postgres = handleTest ./matrix/mautrix-meta-postgres.nix {};
583   mautrix-meta-sqlite = handleTest ./matrix/mautrix-meta-sqlite.nix {};
584   mattermost = handleTest ./mattermost.nix {};
585   mealie = handleTest ./mealie.nix {};
586   mediamtx = handleTest ./mediamtx.nix {};
587   mediatomb = handleTest ./mediatomb.nix {};
588   mediawiki = handleTest ./mediawiki.nix {};
589   meilisearch = handleTest ./meilisearch.nix {};
590   memcached = handleTest ./memcached.nix {};
591   merecat = handleTest ./merecat.nix {};
592   metabase = handleTest ./metabase.nix {};
593   mihomo = handleTest ./mihomo.nix {};
594   mindustry = handleTest ./mindustry.nix {};
595   minecraft = handleTest ./minecraft.nix {};
596   minecraft-server = handleTest ./minecraft-server.nix {};
597   minidlna = handleTest ./minidlna.nix {};
598   miniflux = handleTest ./miniflux.nix {};
599   minio = handleTest ./minio.nix {};
600   miracle-wm = runTest ./miracle-wm.nix;
601   miriway = handleTest ./miriway.nix {};
602   misc = handleTest ./misc.nix {};
603   misskey = handleTest ./misskey.nix {};
604   mjolnir = handleTest ./matrix/mjolnir.nix {};
605   mobilizon = handleTest ./mobilizon.nix {};
606   mod_perl = handleTest ./mod_perl.nix {};
607   molly-brown = handleTest ./molly-brown.nix {};
608   mollysocket = handleTest ./mollysocket.nix { };
609   monado = handleTest ./monado.nix {};
610   monetdb = handleTest ./monetdb.nix {};
611   monica = handleTest ./web-apps/monica.nix {};
612   mongodb = handleTest ./mongodb.nix {};
613   moodle = handleTest ./moodle.nix {};
614   moonraker = handleTest ./moonraker.nix {};
615   morph-browser = handleTest ./morph-browser.nix { };
616   morty = handleTest ./morty.nix {};
617   mosquitto = handleTest ./mosquitto.nix {};
618   moosefs = handleTest ./moosefs.nix {};
619   movim = discoverTests (import ./web-apps/movim { inherit handleTestOn; });
620   mpd = handleTest ./mpd.nix {};
621   mpv = handleTest ./mpv.nix {};
622   mtp = handleTest ./mtp.nix {};
623   multipass = handleTest ./multipass.nix {};
624   mumble = handleTest ./mumble.nix {};
625   # Fails on aarch64-linux at the PDF creation step - need to debug this on an
626   # aarch64 machine..
627   musescore = handleTestOn ["x86_64-linux"] ./musescore.nix {};
628   music-assistant = runTest ./music-assistant.nix;
629   munin = handleTest ./munin.nix {};
630   mutableUsers = handleTest ./mutable-users.nix {};
631   mycelium = handleTest ./mycelium {};
632   mympd = handleTest ./mympd.nix {};
633   mysql = handleTest ./mysql/mysql.nix {};
634   mysql-autobackup = handleTest ./mysql/mysql-autobackup.nix {};
635   mysql-backup = handleTest ./mysql/mysql-backup.nix {};
636   mysql-replication = handleTest ./mysql/mysql-replication.nix {};
637   n8n = handleTest ./n8n.nix {};
638   nagios = handleTestOn [ "x86_64-linux" "aarch64-linux" ] ./nagios.nix {};
639   nar-serve = handleTest ./nar-serve.nix {};
640   nat.firewall = handleTest ./nat.nix { withFirewall = true; };
641   nat.standalone = handleTest ./nat.nix { withFirewall = false; };
642   nat.nftables.firewall = handleTest ./nat.nix { withFirewall = true; nftables = true; };
643   nat.nftables.standalone = handleTest ./nat.nix { withFirewall = false; nftables = true; };
644   nats = handleTest ./nats.nix {};
645   navidrome = handleTest ./navidrome.nix {};
646   nbd = handleTest ./nbd.nix {};
647   ncdns = handleTest ./ncdns.nix {};
648   ndppd = handleTest ./ndppd.nix {};
649   nix-channel = pkgs.callPackage ../modules/config/nix-channel/test.nix { };
650   nebula = handleTest ./nebula.nix {};
651   netbird = handleTest ./netbird.nix {};
652   nimdow = handleTest ./nimdow.nix {};
653   neo4j = handleTest ./neo4j.nix {};
654   netdata = handleTest ./netdata.nix {};
655   networking.scripted = handleTest ./networking/networkd-and-scripted.nix { networkd = false; };
656   networking.networkd = handleTest ./networking/networkd-and-scripted.nix { networkd = true; };
657   networking.networkmanager = handleTest ./networking/networkmanager.nix {};
658   netbox_3_6 = handleTest ./web-apps/netbox.nix { netbox = pkgs.netbox_3_6; };
659   netbox_3_7 = handleTest ./web-apps/netbox.nix { netbox = pkgs.netbox_3_7; };
660   netbox-upgrade = handleTest ./web-apps/netbox-upgrade.nix {};
661   # TODO: put in networking.nix after the test becomes more complete
662   networkingProxy = handleTest ./networking-proxy.nix {};
663   nextcloud = handleTest ./nextcloud {};
664   nextflow = handleTestOn ["x86_64-linux"] ./nextflow.nix {};
665   nextjs-ollama-llm-ui = runTest ./web-apps/nextjs-ollama-llm-ui.nix;
666   nexus = handleTest ./nexus.nix {};
667   # TODO: Test nfsv3 + Kerberos
668   nfs3 = handleTest ./nfs { version = 3; };
669   nfs4 = handleTest ./nfs { version = 4; };
670   nghttpx = handleTest ./nghttpx.nix {};
671   nginx = handleTest ./nginx.nix {};
672   nginx-auth = handleTest ./nginx-auth.nix {};
673   nginx-etag = handleTest ./nginx-etag.nix {};
674   nginx-etag-compression = handleTest ./nginx-etag-compression.nix {};
675   nginx-globalredirect = handleTest ./nginx-globalredirect.nix {};
676   nginx-http3 = handleTest ./nginx-http3.nix {};
677   nginx-mime = handleTest ./nginx-mime.nix {};
678   nginx-modsecurity = handleTest ./nginx-modsecurity.nix {};
679   nginx-moreheaders = handleTest ./nginx-moreheaders.nix {};
680   nginx-njs = handleTest ./nginx-njs.nix {};
681   nginx-proxyprotocol = handleTest ./nginx-proxyprotocol {};
682   nginx-pubhtml = handleTest ./nginx-pubhtml.nix {};
683   nginx-redirectcode = handleTest ./nginx-redirectcode.nix {};
684   nginx-sso = handleTest ./nginx-sso.nix {};
685   nginx-status-page = handleTest ./nginx-status-page.nix {};
686   nginx-tmpdir = handleTest ./nginx-tmpdir.nix {};
687   nginx-unix-socket = handleTest ./nginx-unix-socket.nix {};
688   nginx-variants = handleTest ./nginx-variants.nix {};
689   nifi = handleTestOn ["x86_64-linux"] ./web-apps/nifi.nix {};
690   nitter = handleTest ./nitter.nix {};
691   nix-config = handleTest ./nix-config.nix {};
692   nix-ld = handleTest ./nix-ld.nix {};
693   nix-misc = handleTest ./nix/misc.nix {};
694   nix-upgrade = handleTest ./nix/upgrade.nix {inherit (pkgs) nixVersions;};
695   nix-required-mounts = runTest ./nix-required-mounts;
696   nix-serve = runTest ./nix-serve.nix;
697   nix-serve-ssh = handleTest ./nix-serve-ssh.nix {};
698   nixops = handleTest ./nixops/default.nix {};
699   nixos-generate-config = handleTest ./nixos-generate-config.nix {};
700   nixos-rebuild-install-bootloader = handleTestOn ["x86_64-linux"] ./nixos-rebuild-install-bootloader.nix {};
701   nixos-rebuild-specialisations = handleTestOn ["x86_64-linux"] ./nixos-rebuild-specialisations.nix {};
702   nixos-rebuild-target-host = handleTest ./nixos-rebuild-target-host.nix {};
703   nixpkgs = pkgs.callPackage ../modules/misc/nixpkgs/test.nix { inherit evalMinimalConfig; };
704   nixseparatedebuginfod = handleTest ./nixseparatedebuginfod.nix {};
705   node-red = handleTest ./node-red.nix {};
706   nomad = handleTest ./nomad.nix {};
707   non-default-filesystems = handleTest ./non-default-filesystems.nix {};
708   non-switchable-system = runTest ./non-switchable-system.nix;
709   noto-fonts = handleTest ./noto-fonts.nix {};
710   noto-fonts-cjk-qt-default-weight = handleTest ./noto-fonts-cjk-qt-default-weight.nix {};
711   novacomd = handleTestOn ["x86_64-linux"] ./novacomd.nix {};
712   npmrc = handleTest ./npmrc.nix {};
713   nscd = handleTest ./nscd.nix {};
714   nsd = handleTest ./nsd.nix {};
715   ntfy-sh = handleTest ./ntfy-sh.nix {};
716   ntfy-sh-migration = handleTest ./ntfy-sh-migration.nix {};
717   ntpd-rs = handleTest ./ntpd-rs.nix {};
718   nvidia-container-toolkit = runTest ./nvidia-container-toolkit.nix;
719   nvmetcfg = handleTest ./nvmetcfg.nix {};
720   nzbget = handleTest ./nzbget.nix {};
721   nzbhydra2 = handleTest ./nzbhydra2.nix {};
722   ocis = handleTest ./ocis.nix {};
723   oddjobd = handleTestOn [ "x86_64-linux" "aarch64-linux" ] ./oddjobd.nix {};
724   obs-studio = handleTest ./obs-studio.nix {};
725   oh-my-zsh = handleTest ./oh-my-zsh.nix {};
726   ollama = runTest ./ollama.nix;
727   ollama-cuda = runTestOn ["x86_64-linux" "aarch64-linux"] ./ollama-cuda.nix;
728   ollama-rocm = runTestOn ["x86_64-linux" "aarch64-linux"] ./ollama-rocm.nix;
729   ombi = handleTest ./ombi.nix {};
730   openarena = handleTest ./openarena.nix {};
731   openldap = handleTest ./openldap.nix {};
732   opensearch = discoverTests (import ./opensearch.nix);
733   openresty-lua = handleTest ./openresty-lua.nix {};
734   opensmtpd = handleTest ./opensmtpd.nix {};
735   opensmtpd-rspamd = handleTest ./opensmtpd-rspamd.nix {};
736   opensnitch = handleTest ./opensnitch.nix {};
737   openssh = handleTest ./openssh.nix {};
738   octoprint = handleTest ./octoprint.nix {};
739   openstack-image-metadata = (handleTestOn ["x86_64-linux"] ./openstack-image.nix {}).metadata or {};
740   openstack-image-userdata = (handleTestOn ["x86_64-linux"] ./openstack-image.nix {}).userdata or {};
741   opentabletdriver = handleTest ./opentabletdriver.nix {};
742   opentelemetry-collector = handleTest ./opentelemetry-collector.nix {};
743   ocsinventory-agent = handleTestOn [ "x86_64-linux" "aarch64-linux" ] ./ocsinventory-agent.nix {};
744   owncast = handleTest ./owncast.nix {};
745   outline = handleTest ./outline.nix {};
746   image-contents = handleTest ./image-contents.nix {};
747   openvscode-server = handleTest ./openvscode-server.nix {};
748   open-webui = runTest ./open-webui.nix;
749   openvswitch = runTest ./openvswitch.nix;
750   orangefs = handleTest ./orangefs.nix {};
751   os-prober = handleTestOn ["x86_64-linux"] ./os-prober.nix {};
752   osquery = handleTestOn ["x86_64-linux"] ./osquery.nix {};
753   osrm-backend = handleTest ./osrm-backend.nix {};
754   overlayfs = handleTest ./overlayfs.nix {};
755   pacemaker = handleTest ./pacemaker.nix {};
756   packagekit = handleTest ./packagekit.nix {};
757   pam-file-contents = handleTest ./pam/pam-file-contents.nix {};
758   pam-oath-login = handleTest ./pam/pam-oath-login.nix {};
759   pam-u2f = handleTest ./pam/pam-u2f.nix {};
760   pam-ussh = handleTest ./pam/pam-ussh.nix {};
761   pam-zfs-key = handleTest ./pam/zfs-key.nix {};
762   pass-secret-service = handleTest ./pass-secret-service.nix {};
763   patroni = handleTestOn ["x86_64-linux"] ./patroni.nix {};
764   pantalaimon = handleTest ./matrix/pantalaimon.nix {};
765   pantheon = handleTest ./pantheon.nix {};
766   paperless = handleTest ./paperless.nix {};
767   parsedmarc = handleTest ./parsedmarc {};
768   pdns-recursor = handleTest ./pdns-recursor.nix {};
769   peerflix = handleTest ./peerflix.nix {};
770   peering-manager = handleTest ./web-apps/peering-manager.nix {};
771   peertube = handleTestOn ["x86_64-linux"] ./web-apps/peertube.nix {};
772   peroxide = handleTest ./peroxide.nix {};
773   pg_anonymizer = handleTest ./pg_anonymizer.nix {};
774   pgadmin4 = handleTest ./pgadmin4.nix {};
775   pgbouncer = handleTest ./pgbouncer.nix {};
776   pghero = runTest ./pghero.nix;
777   pgjwt = handleTest ./pgjwt.nix {};
778   pgmanage = handleTest ./pgmanage.nix {};
779   pgvecto-rs = handleTest ./pgvecto-rs.nix {};
780   phosh = handleTest ./phosh.nix {};
781   photonvision = handleTest ./photonvision.nix {};
782   photoprism = handleTest ./photoprism.nix {};
783   php = handleTest ./php {};
784   php81 = handleTest ./php { php = pkgs.php81; };
785   php82 = handleTest ./php { php = pkgs.php82; };
786   php83 = handleTest ./php { php = pkgs.php83; };
787   php84 = handleTest ./php { php = pkgs.php84; };
788   phylactery = handleTest ./web-apps/phylactery.nix {};
789   pict-rs = handleTest ./pict-rs.nix {};
790   pingvin-share = handleTest ./pingvin-share.nix {} ;
791   pinnwand = handleTest ./pinnwand.nix {};
792   plantuml-server = handleTest ./plantuml-server.nix {};
793   plasma-bigscreen = handleTest ./plasma-bigscreen.nix {};
794   plasma5 = handleTest ./plasma5.nix {};
795   plasma6 = handleTest ./plasma6.nix {};
796   plasma5-systemd-start = handleTest ./plasma5-systemd-start.nix {};
797   plausible = handleTest ./plausible.nix {};
798   playwright-python = handleTest ./playwright-python.nix {};
799   please = handleTest ./please.nix {};
800   pleroma = handleTestOn [ "x86_64-linux" "aarch64-linux" ] ./pleroma.nix {};
801   plikd = handleTest ./plikd.nix {};
802   plotinus = handleTest ./plotinus.nix {};
803   podgrab = handleTest ./podgrab.nix {};
804   podman = handleTestOn ["aarch64-linux" "x86_64-linux"] ./podman/default.nix {};
805   podman-tls-ghostunnel = handleTestOn ["aarch64-linux" "x86_64-linux"] ./podman/tls-ghostunnel.nix {};
806   polaris = handleTest ./polaris.nix {};
807   pomerium = handleTestOn ["x86_64-linux"] ./pomerium.nix {};
808   portunus = handleTest ./portunus.nix { };
809   postfix = handleTest ./postfix.nix {};
810   postfix-raise-smtpd-tls-security-level = handleTest ./postfix-raise-smtpd-tls-security-level.nix {};
811   postfixadmin = handleTest ./postfixadmin.nix {};
812   postgis = handleTest ./postgis.nix {};
813   apache_datasketches = handleTest ./apache_datasketches.nix {};
814   postgresql = handleTest ./postgresql.nix {};
815   postgresql-jit = handleTest ./postgresql-jit.nix {};
816   postgresql-wal-receiver = handleTest ./postgresql-wal-receiver.nix {};
817   postgresql-tls-client-cert = handleTest ./postgresql-tls-client-cert.nix {};
818   postgresql-wal2json = handleTest ./postgresql-wal2json.nix {};
819   powerdns = handleTest ./powerdns.nix {};
820   powerdns-admin = handleTest ./powerdns-admin.nix {};
821   power-profiles-daemon = handleTest ./power-profiles-daemon.nix {};
822   pppd = handleTest ./pppd.nix {};
823   predictable-interface-names = handleTest ./predictable-interface-names.nix {};
824   pretalx = runTest ./web-apps/pretalx.nix;
825   pretix = runTest ./web-apps/pretix.nix;
826   printing-socket = handleTest ./printing.nix { socket = true; };
827   printing-service = handleTest ./printing.nix { socket = false; };
828   private-gpt = handleTest ./private-gpt.nix {};
829   privatebin = runTest ./privatebin.nix;
830   privoxy = handleTest ./privoxy.nix {};
831   prometheus = handleTest ./prometheus {};
832   prometheus-exporters = handleTest ./prometheus-exporters.nix {};
833   prosody = handleTest ./xmpp/prosody.nix {};
834   prosody-mysql = handleTest ./xmpp/prosody-mysql.nix {};
835   proxy = handleTest ./proxy.nix {};
836   prowlarr = handleTest ./prowlarr.nix {};
837   pt2-clone = handleTest ./pt2-clone.nix {};
838   pykms = handleTest ./pykms.nix {};
839   public-inbox = handleTest ./public-inbox.nix {};
840   pufferpanel = handleTest ./pufferpanel.nix {};
841   pulseaudio = discoverTests (import ./pulseaudio.nix);
842   qboot = handleTestOn ["x86_64-linux" "i686-linux"] ./qboot.nix {};
843   qemu-vm-restrictnetwork = handleTest ./qemu-vm-restrictnetwork.nix {};
844   qemu-vm-volatile-root = runTest ./qemu-vm-volatile-root.nix;
845   qemu-vm-external-disk-image = runTest ./qemu-vm-external-disk-image.nix;
846   qemu-vm-store = runTest ./qemu-vm-store.nix;
847   qgis = handleTest ./qgis.nix { qgisPackage = pkgs.qgis; };
848   qgis-ltr = handleTest ./qgis.nix { qgisPackage = pkgs.qgis-ltr; };
849   qownnotes = handleTest ./qownnotes.nix {};
850   qtile = handleTestOn ["x86_64-linux" "aarch64-linux"] ./qtile/default.nix {};
851   quake3 = handleTest ./quake3.nix {};
852   quicktun = handleTest ./quicktun.nix {};
853   quickwit = handleTest ./quickwit.nix {};
854   quorum = handleTest ./quorum.nix {};
855   rabbitmq = handleTest ./rabbitmq.nix {};
856   radarr = handleTest ./radarr.nix {};
857   radicale = handleTest ./radicale.nix {};
858   radicle = runTest ./radicle.nix;
859   ragnarwm = handleTest ./ragnarwm.nix {};
860   rasdaemon = handleTest ./rasdaemon.nix {};
861   rathole = handleTest ./rathole.nix {};
862   readarr = handleTest ./readarr.nix {};
863   realm = handleTest ./realm.nix {};
864   redis = handleTest ./redis.nix {};
865   redlib = handleTest ./redlib.nix {};
866   redmine = handleTest ./redmine.nix {};
867   renovate = handleTest ./renovate.nix {};
868   replace-dependencies = handleTest ./replace-dependencies {};
869   restartByActivationScript = handleTest ./restart-by-activation-script.nix {};
870   restic-rest-server = handleTest ./restic-rest-server.nix {};
871   restic = handleTest ./restic.nix {};
872   retroarch = handleTest ./retroarch.nix {};
873   rke2 = handleTestOn ["aarch64-linux" "x86_64-linux"] ./rke2 {};
874   rkvm = handleTest ./rkvm {};
875   robustirc-bridge = handleTest ./robustirc-bridge.nix {};
876   roundcube = handleTest ./roundcube.nix {};
877   rosenpass = handleTest ./rosenpass.nix {};
878   rshim = handleTest ./rshim.nix {};
879   rspamd = handleTest ./rspamd.nix {};
880   rspamd-trainer = handleTest ./rspamd-trainer.nix {};
881   rss-bridge = handleTest ./web-apps/rss-bridge.nix {};
882   rss2email = handleTest ./rss2email.nix {};
883   rstudio-server = handleTest ./rstudio-server.nix {};
884   rsyncd = handleTest ./rsyncd.nix {};
885   rsyslogd = handleTest ./rsyslogd.nix {};
886   rtorrent = handleTest ./rtorrent.nix {};
887   rxe = handleTest ./rxe.nix {};
888   sabnzbd = handleTest ./sabnzbd.nix {};
889   samba = handleTest ./samba.nix {};
890   samba-wsdd = handleTest ./samba-wsdd.nix {};
891   sane = handleTest ./sane.nix {};
892   sanoid = handleTest ./sanoid.nix {};
893   saunafs = handleTest ./saunafs.nix {};
894   scaphandre = handleTest ./scaphandre.nix {};
895   schleuder = handleTest ./schleuder.nix {};
896   scion-freestanding-deployment = handleTest ./scion/freestanding-deployment {};
897   scrutiny = handleTest ./scrutiny.nix {};
898   sddm = handleTest ./sddm.nix {};
899   seafile = handleTest ./seafile.nix {};
900   searx = runTest ./searx.nix;
901   seatd = handleTest ./seatd.nix {};
902   service-runner = handleTest ./service-runner.nix {};
903   sftpgo = runTest ./sftpgo.nix;
904   sfxr-qt = handleTest ./sfxr-qt.nix {};
905   sgt-puzzles = handleTest ./sgt-puzzles.nix {};
906   shadow = handleTest ./shadow.nix {};
907   shadowsocks = handleTest ./shadowsocks {};
908   shattered-pixel-dungeon = handleTest ./shattered-pixel-dungeon.nix {};
909   shiori = handleTest ./shiori.nix {};
910   signal-desktop = handleTest ./signal-desktop.nix {};
911   silverbullet = handleTest ./silverbullet.nix {};
912   simple = handleTest ./simple.nix {};
913   sing-box = handleTest ./sing-box.nix {};
914   slimserver = handleTest ./slimserver.nix {};
915   slurm = handleTest ./slurm.nix {};
916   snmpd = handleTest ./snmpd.nix {};
917   smokeping = handleTest ./smokeping.nix {};
918   snapcast = handleTest ./snapcast.nix {};
919   snapper = handleTest ./snapper.nix {};
920   snipe-it = runTest ./web-apps/snipe-it.nix;
921   soapui = handleTest ./soapui.nix {};
922   soft-serve = handleTest ./soft-serve.nix {};
923   sogo = handleTest ./sogo.nix {};
924   soju = handleTest ./soju.nix {};
925   solanum = handleTest ./solanum.nix {};
926   sonarr = handleTest ./sonarr.nix {};
927   sonic-server = handleTest ./sonic-server.nix {};
928   sourcehut = handleTest ./sourcehut {};
929   spacecookie = handleTest ./spacecookie.nix {};
930   spark = handleTestOn [ "x86_64-linux" "aarch64-linux" ] ./spark {};
931   sqlite3-to-mysql = handleTest ./sqlite3-to-mysql.nix {};
932   sslh = handleTest ./sslh.nix {};
933   ssh-agent-auth = handleTest ./ssh-agent-auth.nix {};
934   ssh-audit = handleTest ./ssh-audit.nix {};
935   sssd = handleTestOn [ "x86_64-linux" "aarch64-linux" ] ./sssd.nix {};
936   sssd-ldap = handleTestOn [ "x86_64-linux" "aarch64-linux" ] ./sssd-ldap.nix {};
937   stalwart-mail = handleTest ./stalwart-mail.nix {};
938   stargazer = runTest ./web-servers/stargazer.nix;
939   starship = handleTest ./starship.nix {};
940   static-web-server = handleTest ./web-servers/static-web-server.nix {};
941   step-ca = handleTestOn ["x86_64-linux"] ./step-ca.nix {};
942   stratis = handleTest ./stratis {};
943   strongswan-swanctl = handleTest ./strongswan-swanctl.nix {};
944   stub-ld = handleTestOn [ "x86_64-linux" "aarch64-linux" ] ./stub-ld.nix {};
945   stunnel = handleTest ./stunnel.nix {};
946   sudo = handleTest ./sudo.nix {};
947   sudo-rs = handleTest ./sudo-rs.nix {};
948   sunshine = handleTest ./sunshine.nix {};
949   suricata = handleTest ./suricata.nix {};
950   suwayomi-server = handleTest ./suwayomi-server.nix {};
951   swap-file-btrfs = handleTest ./swap-file-btrfs.nix {};
952   swap-partition = handleTest ./swap-partition.nix {};
953   swap-random-encryption = handleTest ./swap-random-encryption.nix {};
954   sway = handleTest ./sway.nix {};
955   swayfx = handleTest ./swayfx.nix {};
956   switchTest = handleTest ./switch-test.nix { ng = false; };
957   switchTestNg = handleTest ./switch-test.nix { ng = true; };
958   sx = handleTest ./sx.nix {};
959   sympa = handleTest ./sympa.nix {};
960   syncthing = handleTest ./syncthing.nix {};
961   syncthing-no-settings = handleTest ./syncthing-no-settings.nix {};
962   syncthing-init = handleTest ./syncthing-init.nix {};
963   syncthing-many-devices = handleTest ./syncthing-many-devices.nix {};
964   syncthing-relay = handleTest ./syncthing-relay.nix {};
965   sysinit-reactivation = runTest ./sysinit-reactivation.nix;
966   systemd = handleTest ./systemd.nix {};
967   systemd-analyze = handleTest ./systemd-analyze.nix {};
968   systemd-binfmt = handleTestOn ["x86_64-linux"] ./systemd-binfmt.nix {};
969   systemd-boot = handleTest ./systemd-boot.nix {};
970   systemd-bpf = handleTest ./systemd-bpf.nix {};
971   systemd-confinement = handleTest ./systemd-confinement {};
972   systemd-coredump = handleTest ./systemd-coredump.nix {};
973   systemd-cryptenroll = handleTest ./systemd-cryptenroll.nix {};
974   systemd-credentials-tpm2 = handleTest ./systemd-credentials-tpm2.nix {};
975   systemd-escaping = handleTest ./systemd-escaping.nix {};
976   systemd-initrd-bridge = handleTest ./systemd-initrd-bridge.nix {};
977   systemd-initrd-btrfs-raid = handleTest ./systemd-initrd-btrfs-raid.nix {};
978   systemd-initrd-luks-fido2 = handleTest ./systemd-initrd-luks-fido2.nix {};
979   systemd-initrd-luks-keyfile = handleTest ./systemd-initrd-luks-keyfile.nix {};
980   systemd-initrd-luks-empty-passphrase = handleTest ./initrd-luks-empty-passphrase.nix { systemdStage1 = true; };
981   systemd-initrd-luks-password = handleTest ./systemd-initrd-luks-password.nix {};
982   systemd-initrd-luks-tpm2 = handleTest ./systemd-initrd-luks-tpm2.nix {};
983   systemd-initrd-luks-unl0kr = handleTest ./systemd-initrd-luks-unl0kr.nix {};
984   systemd-initrd-modprobe = handleTest ./systemd-initrd-modprobe.nix {};
985   systemd-initrd-shutdown = handleTest ./systemd-shutdown.nix { systemdStage1 = true; };
986   systemd-initrd-simple = handleTest ./systemd-initrd-simple.nix {};
987   systemd-initrd-swraid = handleTest ./systemd-initrd-swraid.nix {};
988   systemd-initrd-vconsole = handleTest ./systemd-initrd-vconsole.nix {};
989   systemd-initrd-networkd = handleTest ./systemd-initrd-networkd.nix {};
990   systemd-initrd-networkd-ssh = handleTest ./systemd-initrd-networkd-ssh.nix {};
991   systemd-initrd-networkd-openvpn = handleTestOn [ "x86_64-linux" "i686-linux" ] ./initrd-network-openvpn { systemdStage1 = true; };
992   systemd-initrd-vlan = handleTest ./systemd-initrd-vlan.nix {};
993   systemd-journal = handleTest ./systemd-journal.nix {};
994   systemd-journal-gateway = handleTest ./systemd-journal-gateway.nix {};
995   systemd-journal-upload = handleTest ./systemd-journal-upload.nix {};
996   systemd-lock-handler = runTestOn ["aarch64-linux" "x86_64-linux"] ./systemd-lock-handler.nix;
997   systemd-machinectl = handleTest ./systemd-machinectl.nix {};
998   systemd-networkd = handleTest ./systemd-networkd.nix {};
999   systemd-networkd-bridge = handleTest ./systemd-networkd-bridge.nix {};
1000   systemd-networkd-dhcpserver = handleTest ./systemd-networkd-dhcpserver.nix {};
1001   systemd-networkd-dhcpserver-static-leases = handleTest ./systemd-networkd-dhcpserver-static-leases.nix {};
1002   systemd-networkd-ipv6-prefix-delegation = handleTest ./systemd-networkd-ipv6-prefix-delegation.nix {};
1003   systemd-networkd-vrf = handleTest ./systemd-networkd-vrf.nix {};
1004   systemd-no-tainted = handleTest ./systemd-no-tainted.nix {};
1005   systemd-nspawn = handleTest ./systemd-nspawn.nix {};
1006   systemd-nspawn-configfile = handleTest ./systemd-nspawn-configfile.nix {};
1007   systemd-oomd = handleTest ./systemd-oomd.nix {};
1008   systemd-portabled = handleTest ./systemd-portabled.nix {};
1009   systemd-repart = handleTest ./systemd-repart.nix {};
1010   systemd-resolved = handleTest ./systemd-resolved.nix {};
1011   systemd-shutdown = handleTest ./systemd-shutdown.nix {};
1012   systemd-sysupdate = runTest ./systemd-sysupdate.nix;
1013   systemd-sysusers-mutable = runTest ./systemd-sysusers-mutable.nix;
1014   systemd-sysusers-immutable = runTest ./systemd-sysusers-immutable.nix;
1015   systemd-timesyncd = handleTest ./systemd-timesyncd.nix {};
1016   systemd-timesyncd-nscd-dnssec = handleTest ./systemd-timesyncd-nscd-dnssec.nix {};
1017   systemd-user-linger = handleTest ./systemd-user-linger.nix {};
1018   systemd-user-tmpfiles-rules = handleTest ./systemd-user-tmpfiles-rules.nix {};
1019   systemd-misc = handleTest ./systemd-misc.nix {};
1020   systemd-userdbd = handleTest ./systemd-userdbd.nix {};
1021   systemd-homed = handleTest ./systemd-homed.nix {};
1022   systemtap = handleTest ./systemtap.nix {};
1023   tandoor-recipes = handleTest ./tandoor-recipes.nix {};
1024   tandoor-recipes-script-name = handleTest ./tandoor-recipes-script-name.nix {};
1025   tang = handleTest ./tang.nix {};
1026   taskserver = handleTest ./taskserver.nix {};
1027   taskchampion-sync-server = handleTest ./taskchampion-sync-server.nix {};
1028   tayga = handleTest ./tayga.nix {};
1029   technitium-dns-server = handleTest ./technitium-dns-server.nix {};
1030   teeworlds = handleTest ./teeworlds.nix {};
1031   telegraf = handleTest ./telegraf.nix {};
1032   teleport = handleTest ./teleport.nix {};
1033   teleports = runTest ./teleports.nix;
1034   thelounge = handleTest ./thelounge.nix {};
1035   terminal-emulators = handleTest ./terminal-emulators.nix {};
1036   thanos = handleTest ./thanos.nix {};
1037   tiddlywiki = handleTest ./tiddlywiki.nix {};
1038   tigervnc = handleTest ./tigervnc.nix {};
1039   tika = runTest ./tika.nix;
1040   timescaledb = handleTest ./timescaledb.nix {};
1041   timezone = handleTest ./timezone.nix {};
1042   tinc = handleTest ./tinc {};
1043   tinydns = handleTest ./tinydns.nix {};
1044   tinyproxy = handleTest ./tinyproxy.nix {};
1045   tinywl = handleTest ./tinywl.nix {};
1046   tmate-ssh-server = handleTest ./tmate-ssh-server.nix { };
1047   tomcat = handleTest ./tomcat.nix {};
1048   tor = handleTest ./tor.nix {};
1049   traefik = handleTestOn ["aarch64-linux" "x86_64-linux"] ./traefik.nix {};
1050   trafficserver = handleTest ./trafficserver.nix {};
1051   transfer-sh = handleTest ./transfer-sh.nix {};
1052   transmission_3 = handleTest ./transmission.nix { transmission = pkgs.transmission_3; };
1053   transmission_4 = handleTest ./transmission.nix { transmission = pkgs.transmission_4; };
1054   # tracee requires bpf
1055   tracee = handleTestOn ["x86_64-linux"] ./tracee.nix {};
1056   trezord = handleTest ./trezord.nix {};
1057   trickster = handleTest ./trickster.nix {};
1058   trilium-server = handleTestOn ["x86_64-linux"] ./trilium-server.nix {};
1059   tsja = handleTest ./tsja.nix {};
1060   tsm-client-gui = handleTest ./tsm-client-gui.nix {};
1061   ttyd = handleTest ./web-servers/ttyd.nix {};
1062   txredisapi = handleTest ./txredisapi.nix {};
1063   tuptime = handleTest ./tuptime.nix {};
1064   turbovnc-headless-server = handleTest ./turbovnc-headless-server.nix {};
1065   turn-rs = handleTest ./turn-rs.nix {};
1066   tuxguitar = handleTest ./tuxguitar.nix {};
1067   twingate = runTest ./twingate.nix;
1068   typesense = handleTest ./typesense.nix {};
1069   ucarp = handleTest ./ucarp.nix {};
1070   udisks2 = handleTest ./udisks2.nix {};
1071   ulogd = handleTest ./ulogd/ulogd.nix {};
1072   unbound = handleTest ./unbound.nix {};
1073   unifi = handleTest ./unifi.nix {};
1074   unit-php = handleTest ./web-servers/unit-php.nix {};
1075   unit-perl = handleTest ./web-servers/unit-perl.nix {};
1076   upnp.iptables = handleTest ./upnp.nix { useNftables = false; };
1077   upnp.nftables = handleTest ./upnp.nix { useNftables = true; };
1078   uptermd = handleTest ./uptermd.nix {};
1079   uptime-kuma = handleTest ./uptime-kuma.nix {};
1080   urn-timer = handleTest ./urn-timer.nix {};
1081   usbguard = handleTest ./usbguard.nix {};
1082   userborn = runTest ./userborn.nix;
1083   userborn-mutable-users = runTest ./userborn-mutable-users.nix;
1084   userborn-immutable-users = runTest ./userborn-immutable-users.nix;
1085   userborn-mutable-etc = runTest ./userborn-mutable-etc.nix;
1086   userborn-immutable-etc = runTest ./userborn-immutable-etc.nix;
1087   user-activation-scripts = handleTest ./user-activation-scripts.nix {};
1088   user-expiry = runTest ./user-expiry.nix;
1089   user-home-mode = handleTest ./user-home-mode.nix {};
1090   ustreamer = handleTest ./ustreamer.nix {};
1091   uwsgi = handleTest ./uwsgi.nix {};
1092   v2ray = handleTest ./v2ray.nix {};
1093   varnish60 = handleTest ./varnish.nix { package = pkgs.varnish60; };
1094   varnish74 = handleTest ./varnish.nix { package = pkgs.varnish74; };
1095   varnish75 = handleTest ./varnish.nix { package = pkgs.varnish75; };
1096   vault = handleTest ./vault.nix {};
1097   vault-agent = handleTest ./vault-agent.nix {};
1098   vault-dev = handleTest ./vault-dev.nix {};
1099   vault-postgresql = handleTest ./vault-postgresql.nix {};
1100   vaultwarden = discoverTests (import ./vaultwarden.nix);
1101   vector = handleTest ./vector {};
1102   vengi-tools = handleTest ./vengi-tools.nix {};
1103   victoriametrics = handleTest ./victoriametrics.nix {};
1104   vikunja = handleTest ./vikunja.nix {};
1105   virtualbox = handleTestOn ["x86_64-linux"] ./virtualbox.nix {};
1106   vscode-remote-ssh = handleTestOn ["x86_64-linux"] ./vscode-remote-ssh.nix {};
1107   vscodium = discoverTests (import ./vscodium.nix);
1108   vsftpd = handleTest ./vsftpd.nix {};
1109   warzone2100 = handleTest ./warzone2100.nix {};
1110   wasabibackend = handleTest ./wasabibackend.nix {};
1111   wastebin = handleTest ./wastebin.nix {};
1112   watchdogd = handleTest ./watchdogd.nix {};
1113   webhook = runTest ./webhook.nix;
1114   weblate = handleTest ./web-apps/weblate.nix {};
1115   wiki-js = handleTest ./wiki-js.nix {};
1116   wine = handleTest ./wine.nix {};
1117   wireguard = handleTest ./wireguard {};
1118   wg-access-server = handleTest ./wg-access-server.nix {};
1119   without-nix = handleTest ./without-nix.nix {};
1120   wmderland = handleTest ./wmderland.nix {};
1121   workout-tracker = handleTest ./workout-tracker.nix {};
1122   wpa_supplicant = import ./wpa_supplicant.nix { inherit pkgs runTest; };
1123   wordpress = handleTest ./wordpress.nix {};
1124   wrappers = handleTest ./wrappers.nix {};
1125   writefreely = handleTest ./web-apps/writefreely.nix {};
1126   wstunnel = runTest ./wstunnel.nix;
1127   xandikos = handleTest ./xandikos.nix {};
1128   xautolock = handleTest ./xautolock.nix {};
1129   xfce = handleTest ./xfce.nix {};
1130   xmonad = handleTest ./xmonad.nix {};
1131   xmonad-xdg-autostart = handleTest ./xmonad-xdg-autostart.nix {};
1132   xpadneo = handleTest ./xpadneo.nix {};
1133   xrdp = handleTest ./xrdp.nix {};
1134   xrdp-with-audio-pulseaudio = handleTest ./xrdp-with-audio-pulseaudio.nix {};
1135   xscreensaver = handleTest ./xscreensaver.nix {};
1136   xss-lock = handleTest ./xss-lock.nix {};
1137   xterm = handleTest ./xterm.nix {};
1138   xxh = handleTest ./xxh.nix {};
1139   yabar = handleTest ./yabar.nix {};
1140   ydotool = handleTest ./ydotool.nix {};
1141   yggdrasil = handleTest ./yggdrasil.nix {};
1142   your_spotify = handleTest ./your_spotify.nix {};
1143   zammad = handleTest ./zammad.nix {};
1144   zeronet-conservancy = handleTest ./zeronet-conservancy.nix {};
1145   zfs = handleTest ./zfs.nix {};
1146   zigbee2mqtt = handleTest ./zigbee2mqtt.nix {};
1147   zoneminder = handleTest ./zoneminder.nix {};
1148   zookeeper = handleTest ./zookeeper.nix {};
1149   zram-generator = handleTest ./zram-generator.nix {};
1150   zrepl = handleTest ./zrepl.nix {};
1151   zsh-history = handleTest ./zsh-history.nix {};
1152   zwave-js = handleTest ./zwave-js.nix {};