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

Builder memcached-solaris10-amd64 Build #262

Results:

Failed shell_2 shell_3

SourceStamp:

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

BuildSlave:

unstable10x

Reason:

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

Steps and Logfiles:

  1. git update ( 1 secs )
    1. stdio
  2. shell 'bash autogen.sh' ( 3 secs )
    1. stdio
  3. shell_1 './configure --enable-sasl ...' ( 6 secs )
    1. stdio
    2. config.log
  4. shell_2 'gmake' failed ( 0 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 262 Build
codebase Build
got_revision b031143f8ab61296ddbf6c4470c5dcdbf7ae588b Git
project memcached Build
repository git://github.com/memcached/memcached.git Build
revision b031143f8ab61296ddbf6c4470c5dcdbf7ae588b 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. bitground

Timing:

StartTue Oct 27 00:49:53 2020
EndTue Oct 27 00:50:06 2020
Elapsed12 secs

All Changes:

:

  1. Change #117048

    Category memcached
    Changed by bitground <70304874+bitgroundohnoyoudont@users.noreply.github.com>
    Changed at Tue 27 Oct 2020 00:36:00
    Repository git://github.com/memcached/memcached.git
    Project memcached
    Branch next
    Revision b031143f8ab61296ddbf6c4470c5dcdbf7ae588b

    Comments

    Fix over-freeing in internal object cache
    When returning item to the cache and the items allocated exceeded cache->limit, we should free the item and not put it to the cache.
    
    The current code will free any item that tried returned to the cache when cache->total < cache->limit which is true in most cases if the total objects has never exceeded the limit.

    Changed files

    • cache.c
    • testapp.c