[compiler-rt] f4a3df1 - [ASan][Darwin] XFAIL test; atos does not show line numbers for globals
Julian Lettner via llvm-commits
llvm-commits at lists.llvm.org
Wed Jun 22 18:38:07 PDT 2022
Author: Julian Lettner
Date: 2022-06-22T18:19:31-07:00
New Revision: f4a3df18a7643cc9a0da693b078dcdb12a3fa6ab
URL: https://github.com/llvm/llvm-project/commit/f4a3df18a7643cc9a0da693b078dcdb12a3fa6ab
DIFF: https://github.com/llvm/llvm-project/commit/f4a3df18a7643cc9a0da693b078dcdb12a3fa6ab.diff
LOG: [ASan][Darwin] XFAIL test; atos does not show line numbers for globals
atos currently doesn't show source line numbers for global variables, so
global-location.cpp is failing after we switched from ASan-specific
metadata to normal symbolication.
See:
https://reviews.llvm.org/D127552
Added:
Modified:
compiler-rt/test/asan/TestCases/global-location.cpp
Removed:
################################################################################
diff --git a/compiler-rt/test/asan/TestCases/global-location.cpp b/compiler-rt/test/asan/TestCases/global-location.cpp
index 3cf1791c800ce..bc3ad2fc5e453 100644
--- a/compiler-rt/test/asan/TestCases/global-location.cpp
+++ b/compiler-rt/test/asan/TestCases/global-location.cpp
@@ -7,6 +7,9 @@
// COFF doesn't support debuginfo for globals. For the non-debuginfo tests, see global-location-nodebug.cpp.
// XFAIL: windows-msvc
+// atos currently doesn't show source line numbers for global variables.
+// XFAIL: darwin
+
// CHECK: AddressSanitizer: global-buffer-overflow
#include <string.h>
More information about the llvm-commits
mailing list