From: Gabor Horvath Date: Thu, 2 Jul 2015 19:20:46 +0000 (+0000) Subject: [Static Analyzer] No longer include the full path of the source file in the single... X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=cbe5bbcbf0f8bad9646240cb80e7c839c0f79ea2;p=clang [Static Analyzer] No longer include the full path of the source file in the single file tests' bug identifiers. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@241292 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/utils/analyzer/SATestBuild.py b/utils/analyzer/SATestBuild.py index 6588f6bd24..20839c24e1 100755 --- a/utils/analyzer/SATestBuild.py +++ b/utils/analyzer/SATestBuild.py @@ -280,7 +280,7 @@ def runAnalyzePreprocessed(Dir, SBOutputDir, Mode): # Build and call the analyzer command. 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") try: if Verbose == 1: