python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / nixos / tests / systemd-journal.nix
blobd2063a3b9a44e41e2be4a6baef2aaed310cc98c8
1 import ./make-test-python.nix ({ pkgs, ... }:
4   name = "systemd-journal";
5   meta = with pkgs.lib.maintainers; {
6     maintainers = [ lewo ];
7   };
9   nodes.machine = { pkgs, lib, ... }: {
10     services.journald.enableHttpGateway = true;
11   };
13   testScript = ''
14     machine.wait_for_unit("multi-user.target")
16     machine.succeed("journalctl --grep=systemd")
18     machine.succeed(
19         "${pkgs.curl}/bin/curl -s localhost:19531/machine | ${pkgs.jq}/bin/jq -e '.hostname == \"machine\"'"
20     )
21   '';