python312Packages.homematicip: 1.1.2 -> 1.1.3 (#356780)
[NixPkgs.git] / nixos / tests / systemd-no-tainted.nix
blobf0504065f2a482438c88af314c8ffb1bf9937638
1 import ./make-test-python.nix ({ pkgs, ... }: {
2   name = "systemd-no-tainted";
4   nodes.machine = { };
6   testScript = ''
7     machine.wait_for_unit("multi-user.target")
8     with subtest("systemctl should not report tainted with unmerged-usr"):
9         output = machine.succeed("systemctl status")
10         print(output)
11         assert "Tainted" not in output
12         assert "unmerged-usr" not in output
13   '';