From: Ted Kremenek Date: Mon, 22 Sep 2008 06:47:01 +0000 (+0000) Subject: Use scan-view to view reports. Opening index.html is deprecated. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5950b3f93a6e8a6ae8bd59a0ef5797e9f88f0bc3;p=clang 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 --- 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) {