repo.or.cz
/
NixPkgs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
ahoy: init at 2.2.0 (#366784)
[NixPkgs.git]
/
nixos
/
tests
/
bpftune.nix
blob
454e27272d5b6572ea40caa6d98e63552fd317ec
1
import ./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
)