[Static Analyzer] No longer include the full path of the source file in the single file tests' bug identifiers.

llvm-svn: 241292
This commit is contained in:
Gabor Horvath 2015-07-02 19:20:46 +00:00
parent 18960b9bb7
commit 2ed9456015
1 changed files with 1 additions and 1 deletions

View File

@ -280,7 +280,7 @@ def runAnalyzePreprocessed(Dir, SBOutputDir, Mode):
# Build and call the analyzer command. # Build and call the analyzer command.
OutputOption = "-o " + os.path.join(PlistPath, FileName) + ".plist " OutputOption = "-o " + os.path.join(PlistPath, FileName) + ".plist "
Command = CmdPrefix + OutputOption + os.path.join(Dir, FileName) Command = CmdPrefix + OutputOption + FileName
LogFile = open(os.path.join(FailPath, FileName + ".stderr.txt"), "w+b") LogFile = open(os.path.join(FailPath, FileName + ".stderr.txt"), "w+b")
try: try:
if Verbose == 1: if Verbose == 1: