Skip to content
This repository was archived by the owner on Nov 1, 2021. It is now read-only.

Commit 0d8450b

Browse files
author
George Karpenkov
committed
[Analyzer] [Tests] Dump the output of scan-build to stdout on failure.
Eliminates extra lookup step during debugging. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@316806 91177308-0d34-0410-b5e6-96231b3b80d8
1 parent d668945 commit 0d8450b

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

utils/analyzer/SATestBuild.py

+6-5
Original file line numberDiff line numberDiff line change
@@ -272,10 +272,11 @@ def runScanBuild(Dir, SBOutputDir, PBuildLogFile):
272272
stderr=PBuildLogFile,
273273
stdout=PBuildLogFile,
274274
shell=True)
275-
except:
276-
print "Error: scan-build failed. See ", PBuildLogFile.name,\
277-
" for details."
278-
raise
275+
except CalledProcessError:
276+
print "Error: scan-build failed. Its output was: "
277+
PBuildLogFile.seek(0)
278+
shutil.copyfileobj(PBuildLogFile, sys.stdout)
279+
sys.exit(1)
279280

280281

281282
def runAnalyzePreprocessed(Dir, SBOutputDir, Mode):
@@ -373,7 +374,7 @@ def buildProject(Dir, SBOutputDir, ProjectBuildMode, IsReferenceBuild):
373374
os.makedirs(os.path.join(SBOutputDir, LogFolderName))
374375

375376
# Build and analyze the project.
376-
with open(BuildLogPath, "wb+") as PBuildLogFile:
377+
with open(BuildLogPath, "r+b") as PBuildLogFile:
377378
if (ProjectBuildMode == 1):
378379
downloadAndPatch(Dir, PBuildLogFile)
379380
runCleanupScript(Dir, PBuildLogFile)

0 commit comments

Comments
 (0)