From e09b8c41d0eeb17f8cbe73affb213cb7ff8d0718 Mon Sep 17 00:00:00 2001 From: Jordan Rose Date: Tue, 5 Mar 2013 02:33:08 +0000 Subject: [PATCH] scan-build: explicitly say "No bugs found" if there are no reports. Patch by Martin Storsjo! git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@176472 91177308-0d34-0410-b5e6-96231b3b80d8 --- tools/scan-build/scan-build | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/scan-build/scan-build b/tools/scan-build/scan-build index 013c1f692f..4965dbdc7a 100755 --- a/tools/scan-build/scan-build +++ b/tools/scan-build/scan-build @@ -505,6 +505,7 @@ sub Postprocess { Diag("Removing directory '$Dir' because it contains no reports.\n"); system ("rm", "-fR", $Dir); } + Diag("No bugs found.\n"); return 0; } -- 2.50.0