mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-10 03:23:29 +03:00
parent
6919956d08
commit
5a80e9ed00
2 changed files with 196 additions and 194 deletions
|
@ -575,7 +575,7 @@ in {
|
||||||
kavita = handleTest ./kavita.nix {};
|
kavita = handleTest ./kavita.nix {};
|
||||||
kbd-setfont-decompress = handleTest ./kbd-setfont-decompress.nix {};
|
kbd-setfont-decompress = handleTest ./kbd-setfont-decompress.nix {};
|
||||||
kbd-update-search-paths-patch = handleTest ./kbd-update-search-paths-patch.nix {};
|
kbd-update-search-paths-patch = handleTest ./kbd-update-search-paths-patch.nix {};
|
||||||
kea = handleTest ./kea.nix {};
|
kea = runTest ./kea.nix;
|
||||||
keepalived = handleTest ./keepalived.nix {};
|
keepalived = handleTest ./keepalived.nix {};
|
||||||
keepassxc = handleTest ./keepassxc.nix {};
|
keepassxc = handleTest ./keepassxc.nix {};
|
||||||
kerberos = handleTest ./kerberos/default.nix {};
|
kerberos = handleTest ./kerberos/default.nix {};
|
||||||
|
|
|
@ -5,9 +5,12 @@
|
||||||
# that the nameserver can resolve the clients fqdn to the correct IP
|
# that the nameserver can resolve the clients fqdn to the correct IP
|
||||||
# address.
|
# address.
|
||||||
|
|
||||||
import ./make-test-python.nix (
|
{
|
||||||
{ pkgs, lib, ... }:
|
pkgs,
|
||||||
{
|
lib,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
{
|
||||||
meta.maintainers = with lib.maintainers; [ hexa ];
|
meta.maintainers = with lib.maintainers; [ hexa ];
|
||||||
|
|
||||||
name = "kea";
|
name = "kea";
|
||||||
|
@ -231,5 +234,4 @@ import ./make-test-python.nix (
|
||||||
router.log(router.execute("curl 127.0.0.1:9547")[1])
|
router.log(router.execute("curl 127.0.0.1:9547")[1])
|
||||||
router.succeed("curl --no-buffer 127.0.0.1:9547 | grep -qE '^kea_dhcp4_addresses_assigned_total.*1.0$'")
|
router.succeed("curl --no-buffer 127.0.0.1:9547 | grep -qE '^kea_dhcp4_addresses_assigned_total.*1.0$'")
|
||||||
'';
|
'';
|
||||||
}
|
}
|
||||||
)
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue