[compiler-rt] 2e9494f - [ASan] Re-enable duplicate_os_log_reports test and include cstdlib for malloc (#153195)

via llvm-commits llvm-commits at lists.llvm.org
Tue Aug 19 04:12:51 PDT 2025


Author: Dan Blackwell
Date: 2025-08-19T12:12:48+01:00
New Revision: 2e9494ff96639103d84a14e578676cc4880cfcb9

URL: https://github.com/llvm/llvm-project/commit/2e9494ff96639103d84a14e578676cc4880cfcb9
DIFF: https://github.com/llvm/llvm-project/commit/2e9494ff96639103d84a14e578676cc4880cfcb9.diff

LOG: [ASan] Re-enable duplicate_os_log_reports test and include cstdlib for malloc (#153195)

rdar://62141527

Added: 
    

Modified: 
    compiler-rt/test/asan/TestCases/Darwin/duplicate_os_log_reports.cpp

Removed: 
    


################################################################################
diff  --git a/compiler-rt/test/asan/TestCases/Darwin/duplicate_os_log_reports.cpp b/compiler-rt/test/asan/TestCases/Darwin/duplicate_os_log_reports.cpp
index dd5a257e39855..43ca027c970cd 100644
--- a/compiler-rt/test/asan/TestCases/Darwin/duplicate_os_log_reports.cpp
+++ b/compiler-rt/test/asan/TestCases/Darwin/duplicate_os_log_reports.cpp
@@ -1,6 +1,4 @@
 // UNSUPPORTED: ios
-// Don't re-enable until rdar://problem/62141527 is fixed.
-// REQUIRES: rdar_62141527
 // REQUIRES: shell
 // REQUIRES: darwin_log_cmd
 // RUN: %clangxx_asan -fsanitize-recover=address %s -o %t
@@ -16,6 +14,7 @@
 // RUN: FileCheck %s -input-file=%t.process_syslog_output.txt
 #include <cassert>
 #include <cstdio>
+#include <cstdlib>
 #include <cstring>
 #include <sanitizer/asan_interface.h>
 


        


More information about the llvm-commits mailing list