Home - Waterfall Grid T-Grid Console Builders Recent Builds Buildslaves Changesources - JSON API - About

Builder tcpdump-solaris11-amd64 Build #102

Results:

Build successful

SourceStamp:

Projecttcpdump
Repositoryhttps://git.tcpdump.org/tcpdump
Branchmaster
Revisiond39dc7729c8e73049aa81dbaa1b425942880d514
Got Revisiond39dc7729c8e73049aa81dbaa1b425942880d514
Changes2 changes

BuildSlave:

unstable11x

Reason:

The SingleBranchScheduler scheduler named 'schedule-tcpdump-solaris11-amd64' triggered this build

Steps and Logfiles:

  1. git update ( 6 secs )
    1. stdio
  2. shell 'rm -rf ...' ( 0 secs )
    1. stdio
  3. shell_1 'git clone ...' ( 4 secs )
    1. stdio
  4. shell_2 './build_matrix.sh' ( 3 hrs, 59 mins, 41 secs )
    1. stdio
    2. config.log

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot/slave/tcpdump-solaris11-amd64 slave
buildername tcpdump-solaris11-amd64 Builder
buildnumber 102 Build
codebase Build
got_revision d39dc7729c8e73049aa81dbaa1b425942880d514 Git
project tcpdump Build
repository https://git.tcpdump.org/tcpdump Build
revision d39dc7729c8e73049aa81dbaa1b425942880d514 Build
scheduler schedule-tcpdump-solaris11-amd64 Scheduler
slavename unstable11x BuildSlave
workdir /export/home/buildbot/slave/tcpdump-solaris11-amd64 slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Denis Ovsienko

Timing:

StartSat Mar 7 19:33:43 2026
EndSat Mar 7 23:33:36 2026
Elapsed3 hrs, 59 mins, 53 secs

All Changes:

:

  1. Change #260210

    Category tcpdump
    Changed by Denis Ovsienko <denisohnoyoudont@ovsienko.info>
    Changed at Sat 07 Mar 2026 16:59:03
    Repository https://git.tcpdump.org/tcpdump
    Project tcpdump
    Branch master
    Revision 28cc9aa4c1fd6ed04ea3ea77ca9754c01647bf80

    Comments

    tcpdump(1): Document portable invocation better.
    When the GNU convention is in effect, getopt_long(3) treats the "-1" as
    an option:
    $ tcpdump -y RAW -d 1 == -1
    tcpdump: invalid option -- '1'
    $ tcpdump -y RAW -d -1 == 1
    tcpdump: invalid option -- '1'
    $ tcpdump -y RAW -d -1==-1
    tcpdump: invalid option -- '1'
    
    When the POSIX convention is in effect or the expression is quoted, it
    stops looking for option arguments as soon as (and if!) it has seen a
    non-option argument, which stands for only one of the above cases:
    $ POSIXLY_CORRECT=1 tcpdump -y RAW -d 1 == -1
    tcpdump: expression rejects all packets
    $ tcpdump -y RAW -d '1 == -1'
    tcpdump: expression rejects all packets
    
    The "--" delimiter does the job right:
    $ tcpdump -y RAW -d -- 1 == -1
    tcpdump: expression rejects all packets
    $ tcpdump -y RAW -d -- -1 == 1
    tcpdump: expression rejects all packets
    $ tcpdump -y RAW -d -- -1==1
    tcpdump: expression rejects all packets
    
    In the synopsis suggest the delimiter and later on discuss the most
    robust and portable command-line invocation, as well as the
    complications it avoids.

    Changed files

    • tcpdump.1.in
  2. Change #260211

    Category tcpdump
    Changed by Denis Ovsienko <denisohnoyoudont@ovsienko.info>
    Changed at Sat 07 Mar 2026 17:00:48
    Repository https://git.tcpdump.org/tcpdump
    Project tcpdump
    Branch master
    Revision d39dc7729c8e73049aa81dbaa1b425942880d514

    Comments

    Prepend all test filter expressions with "--". [skip ci]

    Changed files

    • tests/TESTLIST