[cfe-commits] r162940 - /cfe/trunk/utils/analyzer/SATestBuild.py
Anna Zaks
ganna at apple.com
Thu Aug 30 14:04:09 PDT 2012
Author: zaks
Date: Thu Aug 30 16:04:09 2012
New Revision: 162940
URL: http://llvm.org/viewvc/llvm-project?rev=162940&view=rev
Log:
[analyzer] Disable diagnostic checking on the buildbot.
Due to recent diagnostic changes, we may generate malformed diagnostics.
Modified:
cfe/trunk/utils/analyzer/SATestBuild.py
Modified: cfe/trunk/utils/analyzer/SATestBuild.py
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/utils/analyzer/SATestBuild.py?rev=162940&r1=162939&r2=162940&view=diff
==============================================================================
--- cfe/trunk/utils/analyzer/SATestBuild.py (original)
+++ cfe/trunk/utils/analyzer/SATestBuild.py Thu Aug 30 16:04:09 2012
@@ -351,10 +351,11 @@
Failures = glob.glob(SBOutputDir + "/*/failures/*.stderr.txt")
TotalFailed = len(Failures);
if TotalFailed == 0:
- CleanUpEmptyPlists(SBOutputDir)
- Plists = glob.glob(SBOutputDir + "/*/*.plist")
- print "Number of bug reports (non empty plist files) produced: %d" %\
- len(Plists)
+ #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)
return;
# Create summary file to display when the build fails.
@@ -492,8 +493,9 @@
checkBuild(SBOutputDir)
- if IsReferenceBuild == False:
- runCmpResults(Dir)
+ # TODO: Re-enable after the diagnostic regressions are fixed.
+ #if IsReferenceBuild == False:
+ # runCmpResults(Dir)
print "Completed tests for project %s (time: %.2f)." % \
(ID, (time.time()-TBegin))
More information about the cfe-commits
mailing list