(t *testing.T)
| 526 | } |
| 527 | |
| 528 | func TestPidsSystemd(t *testing.T) { |
| 529 | if !systemd.IsRunningSystemd() { |
| 530 | t.Skip("Test requires systemd.") |
| 531 | } |
| 532 | testPids(t, true) |
| 533 | } |
| 534 | |
| 535 | func mkPtr[T any](v T) *T { return &v } |
| 536 |
nothing calls this directly
no test coverage detected
searching dependent graphs…