diff options
author | Gabor Horvath <xazax.hun@gmail.com> | 2015-07-02 19:20:46 +0000 |
---|---|---|
committer | Gabor Horvath <xazax.hun@gmail.com> | 2015-07-02 19:20:46 +0000 |
commit | 2ed9456015e9f5f1482e1a764cb1b883cfd05677 (patch) | |
tree | 6c50fb17f0193debe7680bb8dd6fc5b9e9f8f6ce /clang/utils | |
parent | 18960b9bb73c9245408ddb36ccea50c1c6bbde0a (diff) | |
download | bcm5719-llvm-2ed9456015e9f5f1482e1a764cb1b883cfd05677.tar.gz bcm5719-llvm-2ed9456015e9f5f1482e1a764cb1b883cfd05677.zip |
[Static Analyzer] No longer include the full path of the source file in the single file tests' bug identifiers.
llvm-svn: 241292
Diffstat (limited to 'clang/utils')
-rwxr-xr-x | clang/utils/analyzer/SATestBuild.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/utils/analyzer/SATestBuild.py b/clang/utils/analyzer/SATestBuild.py index 6588f6bd249..20839c24e18 100755 --- a/clang/utils/analyzer/SATestBuild.py +++ b/clang/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: |