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

Builder tcpdump-solaris10-sparcv9 Build #5407

Results:

Build successful

SourceStamp:

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

BuildSlave:

unstable10s

Reason:

The SingleBranchScheduler scheduler named 'schedule-tcpdump-solaris10-sparcv9' 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' ( 20 secs )
    1. stdio
  4. shell_2 configure ( 2 mins, 28 secs )
    1. stdio
  5. shell_3 gmake ( 9 mins, 7 secs )
    1. stdio
  6. shell_4 check ( 1 mins, 9 secs )
    1. stdio
    2. failure-outputs.txt

Build Properties:

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

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Francois-Xavier Le Bail

Timing:

StartTue Apr 9 14:43:01 2024
EndTue Apr 9 14:56:12 2024
Elapsed13 mins, 11 secs

All Changes:

:

  1. Change #194897

    Category tcpdump
    Changed by Francois-Xavier Le Bail <devel.fx.lebailohnoyoudont@orange.fr>
    Changed at Tue 09 Apr 2024 14:37:23
    Repository https://git.tcpdump.org/tcpdump
    Project tcpdump
    Branch master
    Revision db1e124f4955ad6e8d042106b2b14c7fd07be804

    Comments

    Makefile.in: Fix the depend target
    Fix an error on Solaris 10 like:
    ./mkdep: /opt/solarisstudio12.3/bin/cc -D_STDC_C99=: not found
    
    When configure get some compiler option like:
    checking for /opt/solarisstudio12.3/bin/cc option to accept ISO C99...
    -D_STDC_C99=
    Makefile will contain:
    CC = /opt/solarisstudio12.3/bin/cc -D_STDC_C99=
    
    And if we use '-c "$(CC)"' mkdep will set and try to run:
    CC="/opt/solarisstudio12.3/bin/cc -D_STDC_C99=", which is incorrect.
    
    Remove the quotes to allow mkdep to set CC with the compiler name and
    set flags with the option.

    Changed files

    • Makefile.in
  2. Change #194898

    Category tcpdump
    Changed by Francois-Xavier Le Bail <devel.fx.lebailohnoyoudont@orange.fr>
    Changed at Tue 09 Apr 2024 14:37:23
    Repository https://git.tcpdump.org/tcpdump
    Project tcpdump
    Branch master
    Revision 420f9f215bf523a28b924161a0619957012cda6b

    Comments

    mkdep: Exit with a non-zero status if a command fails
    This could help detect errors such as in the previous commit.

    Changed files

    • mkdep