diff options
author | Ted Kremenek <kremenek@apple.com> | 2008-09-22 06:47:01 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2008-09-22 06:47:01 +0000 |
commit | 5950b3f93a6e8a6ae8bd59a0ef5797e9f88f0bc3 (patch) | |
tree | fa961da9f2c215d6eac5a1f62f6447c58a12e146 | |
parent | 224e4e7ce867d48c821a672850b2b0d79dad21fb (diff) |
Use scan-view to view reports. Opening index.html is deprecated.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@56431 91177308-0d34-0410-b5e6-96231b3b80d8
-rwxr-xr-x | utils/scan-build | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/utils/scan-build b/utils/scan-build index f48b71d57c..4105c37cf3 100755 --- a/utils/scan-build +++ b/utils/scan-build @@ -743,7 +743,7 @@ ENDTEXT my $Num = scalar(@Index); Diag("$Num bugs found.\n"); if ($Num > 0 && -r "$Dir/index.html") { - Diag("Open '$Dir/index.html' to examine bug reports.\n"); + Diag("Run 'scan-view $Dir' to examine bug reports.\n"); } DiagCrashes($Dir) if ($Crashes); @@ -1118,9 +1118,11 @@ my $ExitStatus = RunBuildCommand(\@ARGV, $IgnoreErrors, $Cmd); my $NumBugs = Postprocess($HtmlDir, $BaseDir); if ($ViewResults and -r "$HtmlDir/index.html") { - # Only works on Mac OS X (for now). - print "Viewing analysis results: '$HtmlDir/index.html'\n"; - system("open", "$HtmlDir/index.html"); + Diag 'analysis run complete.\n'; + Diag "Viewing analysis results in '$HtmlDir' using scan-view.\n"; + my $ScanView = "$RealBin/scan-view"; + if (! -x $ScanView) { $ScanView = "scan-view"; } + exec $ScanView, "$HtmlDir"; } if ($ExitStatusFoundBugs) { |