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

Builder tcpdump-solaris10-sparc Build #6025

Results:

Build successful

SourceStamp:

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

BuildSlave:

unstable10s

Reason:

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

Steps and Logfiles:

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

Build Properties:

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

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Denis Ovsienko

Timing:

StartMon Jul 21 22:23:40 2025
EndMon Jul 21 22:41:44 2025
Elapsed18 mins, 3 secs

All Changes:

:

  1. Change #240347

    Category tcpdump
    Changed by Denis Ovsienko <denisohnoyoudont@ovsienko.info>
    Changed at Mon 21 Jul 2025 20:34:14
    Repository https://git.tcpdump.org/tcpdump
    Project tcpdump
    Branch master
    Revision f9f9e3db1e10cb414f862e6ec869f8b079d13811

    Comments

    Squelch a few warnings from old GCC.
    Debian 6.0.10 i386
    gcc (Debian 4.4.5-8) 4.4.5
    
    print-erspan.c: In function 'erspan_i_ii_print':
    print-erspan.c:71: warning: declaration of 'index' shadows a global
      declaration
    /usr/include/string.h:487: warning: shadowed declaration is here
    print-radius.c: In function 'print_attr_location_information':
    print-radius.c:1093: warning: declaration of 'index' shadows a global
      declaration
    /usr/include/string.h:487: warning: shadowed declaration is here
    print-radius.c: In function 'print_attr_location_data':
    print-radius.c:1137: warning: declaration of 'index' shadows a global
      declaration
    /usr/include/string.h:487: warning: shadowed declaration is here

    Changed files

    • print-erspan.c
    • print-radius.c
  2. Change #240349

    Category tcpdump
    Changed by Denis Ovsienko <denisohnoyoudont@ovsienko.info>
    Changed at Mon 21 Jul 2025 21:19:38
    Repository https://git.tcpdump.org/tcpdump
    Project tcpdump
    Branch master
    Revision c0a74f86b5b76735f888d00c37ba11f69fe437f0

    Comments

    Hinge GCC #pragma diagnostics on version 4.6, not 4.2.
    GCC release notes document all GCC diagnostic pragmas as new in GCC 4.6,
    but this is not entirely true: in GCC 4.4.5 "push" and "pop" are indeed
    not available, but "error", "warning" and "ignored" are (the warnings
    stand for DIAG_OFF_DEPRECATION and DIAG_ON_DEPRECATION respectively):
    
    tcpdump.c: At top level:
    tcpdump.c:3451: warning: expected [error|warning|ignored] after '#pragma
      GCC diagnostic'
    tcpdump.c:3480: warning: expected [error|warning|ignored] after '#pragma
      GCC diagnostic'
    
    Before commit 39f09d6 in 2021 the code indeed required GCC 4.6 for
    "push" and "pop" consistently with libpcap, but during the refactoring
    the requirement erroneously became 4.2, so make it 4.6 again.

    Changed files

    • diag-control.h