From 83cdec2e165cc20610f5fae569bd499a002c5175 Mon Sep 17 00:00:00 2001 From: Markus Theil Date: Mon, 16 Sep 2024 11:31:35 +0200 Subject: [PATCH] nixos/tests/frr: fix ping command Signed-off-by: Markus Theil --- nixos/tests/frr.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/tests/frr.nix b/nixos/tests/frr.nix index 0d1a6a694a82cda..edd702dc60e6f7d 100644 --- a/nixos/tests/frr.nix +++ b/nixos/tests/frr.nix @@ -99,6 +99,6 @@ import ./make-test-python.nix ({ pkgs, ... }: gw.wait_until_succeeds("vtysh -c 'show ip route' | grep '^O>'") with subtest("Test ICMP"): - client.wait_until_succeeds("ping -c 3 server >&2") + client.wait_until_succeeds("ping -4 -c 3 server >&2") ''; })