diff options
author | Francois-Xavier Le Bail <devel.fx.lebail@orange.fr> | 2019-04-24 12:03:59 +0200 |
---|---|---|
committer | Francois-Xavier Le Bail <devel.fx.lebail@orange.fr> | 2019-04-24 15:36:21 +0200 |
commit | 26660d6d154fcc920a146bbf893069f210a50c1c (patch) | |
tree | 633fa97ed4792d0b66c7a6097b95b3dd60c86280 /.travis.yml | |
parent | 426f32a66a95f7d122b7a1c5763053a8754b72c1 (diff) | |
download | tcpdump-26660d6d154fcc920a146bbf893069f210a50c1c.tar.gz |
Travis CI: Add "./tcpdump -L" and "./tcpdump -#n -c 10" commands
They are executed with sudo.
Execute "./tcpdump -J" with sudo.
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index 5937b1f8..8bf1253c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -105,10 +105,12 @@ script: - PATH=$PATH make install - echo -n travis_fold:end:script.make_install - if [ "$CMAKE" = no ]; then make check; fi - - ./tcpdump -D - - ./tcpdump -J - ./tcpdump --version - ./tcpdump -h + - ./tcpdump -D + - sudo ./tcpdump -J + - sudo ./tcpdump -L + - sudo ./tcpdump -#n -c 10 - if [ "$CMAKE" = no ]; then make releasetar; fi - echo '$ cat Makefile [...]'; echo travis_fold:start:script.cat_makefile - if [ "$CMAKE" = no ]; then cat Makefile | sed -n '1,/DO NOT DELETE THIS LINE -- mkdep uses it/p'; fi |