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

Builder memcached-solaris10-amd64 Build #236

Results:

Failed shell_2 shell_3

SourceStamp:

Projectmemcached
Repositorygit://github.com/memcached/memcached.git
Branchnext
Revisionfbe1b1a7e4c5af844c978971c45410bcf918555e
Got Revisionfbe1b1a7e4c5af844c978971c45410bcf918555e
Changes1 change

BuildSlave:

unstable10x

Reason:

The SingleBranchScheduler scheduler named 'schedule-memcached-solaris10-amd64' triggered this build

Steps and Logfiles:

  1. git update ( 2 secs )
    1. stdio
  2. shell 'bash autogen.sh' ( 5 secs )
    1. stdio
  3. shell_1 './configure --enable-sasl ...' ( 7 secs )
    1. stdio
    2. config.log
  4. shell_2 'gmake' failed ( 1 secs )
    1. stdio
  5. shell_3 'gmake test' failed ( 0 secs )
    1. stdio

Build Properties:

NameValueSource
branch next Build
builddir /export/home/buildbot/slave/memcached-solaris10-amd64 slave
buildername memcached-solaris10-amd64 Builder
buildnumber 236 Build
codebase Build
got_revision fbe1b1a7e4c5af844c978971c45410bcf918555e Git
project memcached Build
repository git://github.com/memcached/memcached.git Build
revision fbe1b1a7e4c5af844c978971c45410bcf918555e Build
scheduler schedule-memcached-solaris10-amd64 Scheduler
slavename unstable10x BuildSlave
workdir /export/home/buildbot/slave/memcached-solaris10-amd64 slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. dormando

Timing:

StartSun Apr 12 03:56:49 2020
EndSun Apr 12 03:57:06 2020
Elapsed17 secs

All Changes:

:

  1. Change #105425

    Category memcached
    Changed by dormando <dormandoohnoyoudont@rydia.net>
    Changed at Sun 12 Apr 2020 03:52:20
    Repository git://github.com/memcached/memcached.git
    Project memcached
    Branch next
    Revision fbe1b1a7e4c5af844c978971c45410bcf918555e

    Comments

    Fix undefined behavior with -D_FORTIFY_SOURCE=2
    When compiling with -D_FORTIFY_SOURCE=2, printf is defined as a macro,
    which makes the #ifdef TLS block in the usage() function of memcached.c
    undefined behavior.
    
    This warning was caught by compiling with clang:
    
    memcached.c:7829:2: error: embedding a directive within macro arguments has undefined behavior [-Werror,-Wembedded-directive]
    ^
    memcached.c:7832:2: error: embedding a directive within macro arguments has undefined behavior [-Werror,-Wembedded-directive]
    ^
    
    originally by @tstellar - rewritten by dormando due to a source
    conflict and cleanup of some new ifdefs.

    Changed files

    • memcached.c