From 9af7ceee54af2a2c3aeec2a1a5e35635b50fe1bf Mon Sep 17 00:00:00 2001 From: yinchuang Date: Thu, 16 May 2024 11:33:39 +0800 Subject: [PATCH] [Sanitizer] Fix buf of tsan log Issue:I9PQUL Signed-off-by: yinchuang --- compiler-rt/lib/tsan/rtl/tsan_report.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/compiler-rt/lib/tsan/rtl/tsan_report.cpp b/compiler-rt/lib/tsan/rtl/tsan_report.cpp index b5481eb8b340..ae59355b7f58 100644 --- a/compiler-rt/lib/tsan/rtl/tsan_report.cpp +++ b/compiler-rt/lib/tsan/rtl/tsan_report.cpp @@ -376,6 +376,7 @@ void PrintReport(const ReportDesc *rep) { DumpProcessMap(); Printf("==================\n"); + Printf("End Tsan report\n"); // OHOS_LOCAL } #else // #if !SANITIZER_GO -- Gitee