]> git.gsnw.org Git - fping.git/commitdiff
Test that -x, -X, -k require numeric argument
authorErik Auerswald <auerswal@unix-ag.uni-kl.de>
Tue, 6 Feb 2024 20:43:56 +0000 (21:43 +0100)
committerDavid Schweikert <david@schweikert.ch>
Wed, 7 Feb 2024 07:55:51 +0000 (08:55 +0100)
ci/test-12-option-type.pl

index c1ab5824abd00629b445deba2c7159bf6e44b571..c3ca51f63bae47adcad4267a8f566214df8b5414 100755 (executable)
@@ -1,10 +1,22 @@
 #!/usr/bin/perl -w
 
-use Test::Command tests => 33;
+use Test::Command tests => 42;
+use Test::More;
 
-for my $arg (qw(b B c C H i O p Q r t)) {
+for my $arg (qw(b B c C H i O p Q r t x X)) {
     my $cmd = Test::Command->new(cmd => "fping -$arg xxx");
     $cmd->exit_is_num(1);
     $cmd->stdout_is_eq("");
     $cmd->stderr_like(qr{Usage:});
 }
+
+# fping -k, only supported on Linux, requires a number
+SKIP: {
+    if($^O ne 'linux') {
+        skip '-k option is only supported on Linux', 3;
+    }
+    my $cmd = Test::Command->new(cmd => 'fping -k xxx 127.0.0.1');
+    $cmd->exit_is_num(1);
+    $cmd->stdout_is_eq("");
+    $cmd->stderr_like(qr{Usage:});
+}