]> git.gsnw.org Git - fping.git/commitdiff
fix tests
authorDavid Schweikert <david@schweikert.ch>
Tue, 1 Nov 2016 11:01:18 +0000 (12:01 +0100)
committerDavid Schweikert <david@schweikert.ch>
Tue, 1 Nov 2016 11:01:18 +0000 (12:01 +0100)
ci/test-03-forbidden.pl
src/fping.c

index 2ea8f79a59b0026e2f09b9881bc75cb258efc204..9b1c9607cedf7d8d4c4d6595dfbb554a632deae8 100755 (executable)
@@ -2,13 +2,13 @@
 
 use Test::Command tests => 33;
 
-# fping -i 9
-my $cmd1 = Test::Command->new(cmd => "fping -i 9 -T10 -g 127.0.0.1/29");
+# fping -i 0
+my $cmd1 = Test::Command->new(cmd => "fping -i 0 -T10 -g 127.0.0.1/29");
 $cmd1->exit_is_num(1);
 $cmd1->stdout_is_eq("");
 $cmd1->stderr_is_eq(<<END);
 fping: these options are too risky for mere mortals.
-fping: You need i >= 10, p >= 20, r < 20, and t >= 50
+fping: You need i >= 1, p >= 20, r < 20, and t >= 50
 END
 
 # fping -p 15
@@ -17,7 +17,7 @@ $cmd2->exit_is_num(1);
 $cmd2->stdout_is_eq("");
 $cmd2->stderr_is_eq(<<END);
 fping: these options are too risky for mere mortals.
-fping: You need i >= 10, p >= 20, r < 20, and t >= 50
+fping: You need i >= 1, p >= 20, r < 20, and t >= 50
 END
 
 # fping -r 30
@@ -26,7 +26,7 @@ $cmd3->exit_is_num(1);
 $cmd3->stdout_is_eq("");
 $cmd3->stderr_is_eq(<<END);
 fping: these options are too risky for mere mortals.
-fping: You need i >= 10, p >= 20, r < 20, and t >= 50
+fping: You need i >= 1, p >= 20, r < 20, and t >= 50
 END
 
 # fping -t 40
@@ -35,7 +35,7 @@ $cmd4->exit_is_num(1);
 $cmd4->stdout_is_eq("");
 $cmd4->stderr_is_eq(<<END);
 fping: these options are too risky for mere mortals.
-fping: You need i >= 10, p >= 20, r < 20, and t >= 50
+fping: You need i >= 1, p >= 20, r < 20, and t >= 50
 END
 
 # fping -H 300
index 10025182d296b2b993823caacd4079f8b49b60fe..9c5e68226a2d99b1417352af1066978df1ab0284 100644 (file)
@@ -404,9 +404,7 @@ int main( int argc, char **argv )
             break;
         
         case 'i':
-            if( !( interval = ( unsigned int )atoi( optarg ) * 100 ) )
-                usage(1);
-
+            interval = ( unsigned int )atoi( optarg ) * 100;
             break;
 
         case 'p':