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

Builder tcpdump-solaris10-i386 Build #6038

Results:

Build successful

SourceStamp:

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

BuildSlave:

unstable10x

Reason:

The SingleBranchScheduler scheduler named 'schedule-tcpdump-solaris10-i386' triggered this build

Steps and Logfiles:

  1. git update ( 5 secs )
    1. stdio
  2. shell Set developer mode ( 0 secs )
    1. stdio
  3. shell_1 './autogen.sh' ( 6 secs )
    1. stdio
  4. shell_2 configure ( 1 mins, 4 secs )
    1. stdio
    2. config.log
  5. shell_3 'gmake' ( 3 mins, 57 secs )
    1. stdio
  6. shell_4 'gmake check' ( 1 mins, 17 secs )
    1. stdio
    2. failure-outputs.txt

Build Properties:

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

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Denis Ovsienko

Timing:

StartSat Mar 7 17:04:53 2026
EndSat Mar 7 17:11:25 2026
Elapsed6 mins, 31 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