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

Gabor Horvath xazax.hun at gmail.com
Thu Jul 2 12:20:46 PDT 2015


Author: xazax
Date: Thu Jul  2 14:20:46 2015
New Revision: 241292

URL: http://llvm.org/viewvc/llvm-project?rev=241292&view=rev
Log:
[Static Analyzer] No longer include the full path of the source file in the single file tests' bug identifiers.

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=241292&r1=241291&r2=241292&view=diff
==============================================================================
--- cfe/trunk/utils/analyzer/SATestBuild.py (original)
+++ cfe/trunk/utils/analyzer/SATestBuild.py Thu Jul  2 14:20:46 2015
@@ -280,7 +280,7 @@ def runAnalyzePreprocessed(Dir, SBOutput
         
         # 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:        





More information about the cfe-commits mailing list