]> git.gsnw.org Git - fping.git/commitdiff
more tests
authorDavid Schweikert <david@schweikert.ch>
Fri, 2 May 2014 21:41:54 +0000 (23:41 +0200)
committerDavid Schweikert <david@schweikert.ch>
Fri, 2 May 2014 21:41:54 +0000 (23:41 +0200)
ci/test-11-nopriv.pl

index 7f90f0e08b882bb1995ba5bbfd2011a72543bf84..5b24a32d9d00679be59372f718c165e6752031d0 100755 (executable)
@@ -13,7 +13,7 @@ system("cp $fping6_bin /tmp/fping6.copy; chmod +x /tmp/fping6.copy");
 my $cmd = Test::Command->new(cmd => "/tmp/fping.copy 127.0.0.1");
 $cmd->exit_is_num(4);
 $cmd->stdout_is_eq("");
-$cmd->stderr_is_eq("(null): can't create socket (must run as root?) : Permission denied\n");
+$cmd->stderr_like(qr{\(null\): can't create socket \(must run as root\?\) : .*\n});
 }
 
 # fping6
@@ -21,5 +21,5 @@ $cmd->stderr_is_eq("(null): can't create socket (must run as root?) : Permission
 my $cmd = Test::Command->new(cmd => "/tmp/fping6.copy ::1");
 $cmd->exit_is_num(4);
 $cmd->stdout_is_eq("");
-$cmd->stderr_is_eq("(null): can't create raw socket (must run as root?) : Protocol not supported\n");
+$cmd->stderr_like(qr{\(null\): can't create raw socket \(must run as root\?\) : .*\n});
 }