]> git.gsnw.org Git - fping.git/commitdiff
more tests
authorDavid Schweikert <david@schweikert.ch>
Fri, 2 May 2014 21:19:09 +0000 (23:19 +0200)
committerDavid Schweikert <david@schweikert.ch>
Fri, 2 May 2014 21:19:09 +0000 (23:19 +0200)
ci/test-9-option-r-t.pl

index 1d16a7fd99925ace85214ae725208dc036edc327..675662428e695a46fff5cc97734a94a2610ce29c 100755 (executable)
@@ -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