From f35f4a8cc4a483ed9e166bd1d4c63f3a23de8f79 Mon Sep 17 00:00:00 2001 From: David Schweikert Date: Fri, 2 May 2014 23:19:09 +0200 Subject: [PATCH] more tests --- ci/test-9-option-r-t.pl | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/ci/test-9-option-r-t.pl b/ci/test-9-option-r-t.pl index 1d16a7f..6756624 100755 --- a/ci/test-9-option-r-t.pl +++ b/ci/test-9-option-r-t.pl @@ -1,6 +1,6 @@ #!/usr/bin/perl -w -use Test::Command tests => 6; +use Test::Command tests => 9; # -r n number of retries (default 3) # -s print final stats @@ -41,5 +41,12 @@ $cmd->stdout_is_eq("127.0.0.1 is alive\n"); $cmd->stderr_is_eq(""); } +# fping6 -S +{ +my $cmd = Test::Command->new(cmd => "fping6 -S ::1 ::1"); +$cmd->exit_is_num(0); +$cmd->stdout_is_eq("::1 is alive\n"); +$cmd->stderr_is_eq(""); +} # fping -t tested in test-4-options-a-b.pl -- 2.43.0