1import ./make-test-python.nix ({ lib, pkgs, ... }: {
2
3 name = "bpftune";
4
5 meta = {
6 maintainers = with lib.maintainers; [ nickcao ];
7 };
8
9 nodes = {
10 machine = { pkgs, ... }: {
11 services.bpftune.enable = true;
12 };
13 };
14
15 testScript = ''
16 machine.wait_for_unit("bpftune.service")
17 machine.wait_for_console_text("bpftune works")
18 '';
19
20})