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