]> git.gsnw.org Git - fping.git/commitdiff
travis fix
authorDavid Schweikert <dws@open.ch>
Tue, 30 Sep 2014 13:13:51 +0000 (23:13 +1000)
committerDavid Schweikert <dws@open.ch>
Tue, 30 Sep 2014 13:13:51 +0000 (23:13 +1000)
ci/test-13-unknown-host.pl
ci/test-4-options-a-b.pl

index 734bd091da43ff27e1651ae41c7eb2ed63fcc8e0..d4abb2a7f9c1a4859a73bdd74f701d9191b4b9c8 100755 (executable)
@@ -7,7 +7,7 @@ use Test::Command tests => 6;
 my $cmd = Test::Command->new(cmd => "fping nosuchname.example.com");
 $cmd->exit_is_num(1);
 $cmd->stdout_is_eq("");
-$cmd->stderr_is_eq("nosuchname.example.com address not found\n");
+$cmd->stderr_is_eq("nosuchname.example.com: Name or service not known\n");
 }
 
 # fping6
index 12ebb9db53700556560fdb583d098fc8bb063451..023f6f15835b7bb8deb434c5d270d00b0c3db8d6 100755 (executable)
@@ -1,6 +1,6 @@
 #!/usr/bin/perl -w
 
-use Test::Command tests => 20;
+use Test::Command tests => 23;
 use Test::More;
 use Time::HiRes qw(gettimeofday tv_interval);
 
@@ -27,9 +27,17 @@ $cmd->stderr_is_eq("");
 
 # fping -A -n
 {
-my $cmd = Test::Command->new(cmd => "fping -A -n localhost");
+my $cmd = Test::Command->new(cmd => "fping -A -n 8.8.8.8");
 $cmd->exit_is_num(0);
-$cmd->stdout_is_eq("localhost (127.0.0.1) is alive\n");
+$cmd->stdout_is_eq("google-public-dns-a.google.com (8.8.8.8) is alive\n");
+$cmd->stderr_is_eq("");
+}
+
+# fping -A -n
+{
+my $cmd = Test::Command->new(cmd => "fping -A -n google-public-dns-a.google.com");
+$cmd->exit_is_num(0);
+$cmd->stdout_is_eq("google-public-dns-a.google.com (8.8.8.8) is alive\n");
 $cmd->stderr_is_eq("");
 }