From: David Schweikert Date: Sun, 4 May 2014 19:22:28 +0000 (+0200) Subject: more tests X-Git-Url: https://git.gsnw.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c4c3068bbb62cb332d9ac093950a6f5a9218c74a;p=fping.git more tests --- diff --git a/ci/test-13-unknown-host.pl b/ci/test-13-unknown-host.pl new file mode 100755 index 0000000..734bd09 --- /dev/null +++ b/ci/test-13-unknown-host.pl @@ -0,0 +1,19 @@ +#!/usr/bin/perl -w + +use Test::Command tests => 6; + +# fping +{ +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"); +} + +# fping6 +{ +my $cmd = Test::Command->new(cmd => "fping6 nosuchname.example.com"); +$cmd->exit_is_num(1); +$cmd->stdout_is_eq(""); +$cmd->stderr_is_eq("nosuchname.example.com: Name or service not known\n"); +}