From 44c0f4cce21bb2ea020b6dfb45fa8b2682a45278 Mon Sep 17 00:00:00 2001 From: George Karpenkov Date: Mon, 29 Jan 2018 21:45:07 +0000 Subject: [PATCH] [analyzer] Use stable filenames in analyzer testing infrastructure Makes finding the right file in test results easier. Differential Revision: https://reviews.llvm.org/D42445 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@323697 91177308-0d34-0410-b5e6-96231b3b80d8 --- utils/analyzer/SATestBuild.py | 1 + 1 file changed, 1 insertion(+) diff --git a/utils/analyzer/SATestBuild.py b/utils/analyzer/SATestBuild.py index 60c8796e33..cc5ef48029 100755 --- a/utils/analyzer/SATestBuild.py +++ b/utils/analyzer/SATestBuild.py @@ -247,6 +247,7 @@ def runScanBuild(Dir, SBOutputDir, PBuildLogFile): SBOptions += "-plist-html -o '%s' " % SBOutputDir SBOptions += "-enable-checker " + AllCheckers + " " SBOptions += "--keep-empty " + SBOptions += "-analyzer-config 'stable-report-filename=true' " # Always use ccc-analyze to ensure that we can locate the failures # directory. SBOptions += "--override-compiler " -- 2.40.0