- secure: "CoI8hwHH1yfQoQxIfWGRS0WfTyScox+5aJn0fDDgz2uKrrIxmBvIw/WKX8wcSiV6fLmLuwgNkKqSM3hdO4qaG+JxfWcuEiZZHm+kxSGMkWbGb/fvAI+gHg8ldKyYttcIX71O5rlZiC2QpNKQi2v18S6pI5p8eqnx7DYx4YrmguQ="
compiler:
- gcc
- - clang
branches:
only:
- master
+before_install:
+ - sudo pip install cpp-coveralls --use-mirrors
install:
- ci/build-1-autotools.sh
- curl -L http://cpanmin.us | perl - --sudo App::cpanminus
- ci/test-tarball.sh
after_success:
- ci/deploy-bintray.sh
+ - coveralls
autoreconf -i
./configure --enable-ipv4 --enable-ipv6 --prefix=/opt/fping
-make
+make CFLAGS="-g -fprofile-arcs -ftest-coverage"
sudo make install
+sudo setcap cap_net_raw+ep /opt/fping/sbin/fping
#my $fping6_bin = '/home/dws/checkouts/fping/src/fping6';
# ping 127.0.0.1
-my $cmd1 = Test::Command->new(cmd => "sudo $fping_bin 127.0.0.1");
+my $cmd1 = Test::Command->new(cmd => "$fping_bin 127.0.0.1");
$cmd1->exit_is_num(0);
$cmd1->stdout_is_eq("127.0.0.1 is alive\n");
$cmd1->stderr_is_eq("");
# ping ::1
-my $cmd2 = Test::Command->new(cmd => "sudo $fping6_bin ::1");
+my $cmd2 = Test::Command->new(cmd => "$fping6_bin ::1");
$cmd2->exit_is_num(0);
$cmd2->stdout_is_eq("::1 is alive\n");
$cmd2->stderr_is_eq("");
# ping 3 times 127.0.0.1
-my $cmd3 = Test::Command->new(cmd => "sudo $fping_bin -p 100 -C3 127.0.0.1");
+my $cmd3 = Test::Command->new(cmd => "$fping_bin -p 100 -C3 127.0.0.1");
$cmd3->exit_is_num(0);
$cmd3->stdout_like(qr{127\.0\.0\.1 : \[0\], 84 bytes, 0\.\d+ ms \(0\.\d+ avg, 0% loss\)
127\.0\.0\.1 : \[1\], 84 bytes, 0\.\d+ ms \(0.\d+ avg, 0% loss\)