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

Builder libcheck-solaris10-amd64 Build #13

Results:

Build successful

SourceStamp:

Projectlibcheck
Repositoryhttp://svn.code.sf.net/p/check/code/trunk
Revision1199
Got Revision1199
Changes1 change

BuildSlave:

unstable10x

Reason:

scheduler

Steps and Logfiles:

  1. svn update r1199 ( 2 secs )
    1. stdio
  2. shell '/opt/csw/bin/autoreconf --install' ( 26 secs )
    1. stdio
  3. shell_1 './configure' ( 17 secs )
    1. stdio
  4. shell_2 'gmake' ( 31 secs )
    1. stdio
  5. shell_3 'gmake check' ( 6 mins, 38 secs )
    1. stdio
    2. test-suite.log

Build Properties:

NameValueSource
branch None Build
builddir /export/home/buildbot/slave/libcheck-solaris10-amd64 slave
buildername libcheck-solaris10-amd64 Builder
buildnumber 13 Build
codebase Build
got_revision 1199 SVN
project libcheck Build
repository http://svn.code.sf.net/p/check/code/trunk Build
revision 1199 Build
scheduler schedule-libcheck-solaris10-amd64 Scheduler
slavename unstable10x BuildSlave
workdir /export/home/buildbot/slave/libcheck-solaris10-amd64 slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. brarcher

Timing:

StartThu Mar 12 14:01:17 2015
EndThu Mar 12 14:09:13 2015
Elapsed7 mins, 56 secs

All Changes:

:

  1. Change #9159

    Category None
    Changed by brarcher
    Changed at Thu 12 Mar 2015 14:00:14
    Repository http://svn.code.sf.net/p/check/code/trunk
    Project libcheck
    Revision 1199

    Comments

    add extra space around comparison operators for assert messages
    
    The following argument was made in the report of bug #102 to
    include extra space around the comparison operator in
    assert messages:
    
    When ck_assert_int_gt(1 + 2, 3 + 4) fails, it outputs a string like this:
    
       Assertion '1 + 2>3 + 4' failed: 1 + 2==3, 3 + 4==7
    
    This doesn’t look nice, since most programmers write spaces around comparison operators.
    Therefore, the assertion message should do the same.
    
       Assertion '1 + 2 > 3 + 4' failed: 1 + 2 == 3, 3 + 4 == 7
    
    For condensed code, it would look like this:
    
       Assertion '1+2 > 3+4' failed: 1+2 == 3, 3+4 == 7
    
    I think the versions with the spaces look nicer than those without.

    Changed files

    • src/check.h.in
    • tests/check_check_master.c