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

Builder tcpdump-solaris10-i386 Build #5882

Results:

Build successful

SourceStamp:

Projecttcpdump
Repositoryhttps://git.tcpdump.org/tcpdump
Branchmaster
Revisionbb5ca2b7a05023ed4910f64dcda20cbdb75399c6
Got Revisionbb5ca2b7a05023ed4910f64dcda20cbdb75399c6
Changes1 change

BuildSlave:

unstable10x

Reason:

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

Steps and Logfiles:

  1. git update ( 6 secs )
    1. stdio
  2. shell Set developer mode ( 0 secs )
    1. stdio
  3. shell_1 './autogen.sh' ( 5 secs )
    1. stdio
  4. shell_2 configure ( 1 mins, 5 secs )
    1. stdio
    2. config.log
  5. shell_3 'gmake' ( 4 mins, 19 secs )
    1. stdio
  6. shell_4 'gmake check' ( 1 mins, 40 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 5882 Build
codebase Build
got_revision bb5ca2b7a05023ed4910f64dcda20cbdb75399c6 Git
project tcpdump Build
repository https://git.tcpdump.org/tcpdump Build
revision bb5ca2b7a05023ed4910f64dcda20cbdb75399c6 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. Francois-Xavier Le Bail

Timing:

StartSat Aug 16 22:32:40 2025
EndSat Aug 16 22:39:58 2025
Elapsed7 mins, 17 secs

All Changes:

:

  1. Change #243097

    Category tcpdump
    Changed by Francois-Xavier Le Bail <devel.fx.lebailohnoyoudont@orange.fr>
    Changed at Sat 16 Aug 2025 22:23:12
    Repository https://git.tcpdump.org/tcpdump
    Project tcpdump
    Branch master
    Revision bb5ca2b7a05023ed4910f64dcda20cbdb75399c6

    Comments

    Replace an unnecessary comma operator in addrtostr6()
    Use of comma as statement separator is discouraged and reported as
    warning by clang with -Wcomma.
    
    the use of ';' to separate to assignments is more appropriate than ','.
    
    The warning was:
    addrtostr.c:131:24: warning: possible misuse of comma operator here [-Wcomma]
               cur.base = i, cur.len = 1;
                           ^

    Changed files

    • addrtostr.c