ahoy: init at 2.2.0 (#366784)
[NixPkgs.git] / nixos / tests / bpftune.nix
blob454e27272d5b6572ea40caa6d98e63552fd317ec
1 import ./make-test-python.nix (
2   { lib, pkgs, ... }:
3   {
5     name = "bpftune";
7     meta = {
8       maintainers = with lib.maintainers; [ nickcao ];
9     };
11     nodes = {
12       machine =
13         { pkgs, ... }:
14         {
15           services.bpftune.enable = true;
16         };
17     };
19     testScript = ''
20       machine.wait_for_unit("bpftune.service")
21       machine.wait_for_console_text("bpftune works")
22     '';
24   }