Failures = glob.glob(SBOutputDir + "/*/failures/*.stderr.txt")
TotalFailed = len(Failures);
if TotalFailed == 0:
- #TODO: Re-enable after diagnostics are fixed.
- #CleanUpEmptyPlists(SBOutputDir)
- #Plists = glob.glob(SBOutputDir + "/*/*.plist")
- #print "Number of bug reports (non empty plist files) produced: %d" %\
- # len(Plists)
+ CleanUpEmptyPlists(SBOutputDir)
+ Plists = glob.glob(SBOutputDir + "/*/*.plist")
+ print "Number of bug reports (non empty plist files) produced: %d" %\
+ len(Plists)
return;
# Create summary file to display when the build fails.
checkBuild(SBOutputDir)
- # TODO: Re-enable after the diagnostic regressions are fixed.
- #if IsReferenceBuild == False:
- # runCmpResults(Dir)
+ if IsReferenceBuild == False:
+ runCmpResults(Dir)
print "Completed tests for project %s (time: %.2f)." % \
(ID, (time.time()-TBegin))