[Buildbot-commits] [Buildbot] #969: Incorrect build results in the database

Buildbot buildbot-devel at lists.sourceforge.net
Wed Aug 18 11:35:55 UTC 2010


#969: Incorrect build results in the database
------------------------+---------------------------------------------------
Reporter:  PiotrSikora  |       Owner:           
    Type:  defect       |      Status:  new      
Priority:  major        |   Milestone:  undecided
 Version:  0.8.1        |    Keywords:           
------------------------+---------------------------------------------------
 Only 'success' and 'failed' results are recorded in the database,
 everything else ('''including 'exception' '''!) is saved as 'success'.

 For example, build #86, which resulted in exception (visible in
 WebStatus), has recorded result 0 ('success') in the database:
 {{{
 sqlite> SELECT complete, results FROM buildsets JOIN builds ON
 (buildsets.id=builds.brid) WHERE builds.number=86;
 1|0
 }}}

 Looking at all results in the database, it seems that everything is either
 0 'success' or 2 'failed'. There are no other results:
 {{{
 sqlite> SELECT DISTINCT complete, results FROM buildsets;
 0|
 1|0
 1|2
 }}}

-- 
Ticket URL: <http://buildbot.net/trac/ticket/969>
Buildbot <http://buildbot.net/>
Buildbot: build/test automation


More information about the Commits mailing list