From 9216358c21170198bc25c85aeca9c7926bc4d226 Mon Sep 17 00:00:00 2001 From: Dan Liew Date: Tue, 18 Jun 2019 01:38:03 +0000 Subject: [PATCH] Disable recently added Darwin symbolization tests for iOS. These tests won't necessarily work because the reported modules paths from the device don't match what's on the host and so offline symbolization fails. llvm-svn: 363641 --- .../asan-symbolize-partial-report-no-external-symbolizer.cc | 1 + .../Darwin/asan-symbolize-partial-report-with-module-map.cc | 1 + 2 files changed, 2 insertions(+) diff --git a/compiler-rt/test/asan/TestCases/Darwin/asan-symbolize-partial-report-no-external-symbolizer.cc b/compiler-rt/test/asan/TestCases/Darwin/asan-symbolize-partial-report-no-external-symbolizer.cc index 28393661a1f4..ec4ae0068255 100644 --- a/compiler-rt/test/asan/TestCases/Darwin/asan-symbolize-partial-report-no-external-symbolizer.cc +++ b/compiler-rt/test/asan/TestCases/Darwin/asan-symbolize-partial-report-no-external-symbolizer.cc @@ -1,3 +1,4 @@ +// UNSUPPORTED: ios // When `external_symbolizer_path` is empty on Darwin we fallback on using // dladdr as the symbolizer which means we get the symbol name // but no source location. The current implementation also doesn't try to diff --git a/compiler-rt/test/asan/TestCases/Darwin/asan-symbolize-partial-report-with-module-map.cc b/compiler-rt/test/asan/TestCases/Darwin/asan-symbolize-partial-report-with-module-map.cc index 84964885e60f..23ca8e6399df 100644 --- a/compiler-rt/test/asan/TestCases/Darwin/asan-symbolize-partial-report-with-module-map.cc +++ b/compiler-rt/test/asan/TestCases/Darwin/asan-symbolize-partial-report-with-module-map.cc @@ -1,3 +1,4 @@ +// UNSUPPORTED: ios // FIXME(dliew): We currently have to use module map for this test due to the atos // symbolizer changing the module name from an absolute path to just the file name. // rdar://problem/49784442