diff options
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/functionalities/asan/TestReportData.py')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/functionalities/asan/TestReportData.py | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/asan/TestReportData.py b/lldb/packages/Python/lldbsuite/test/functionalities/asan/TestReportData.py index c1fa22710d0..4ef58789519 100644 --- a/lldb/packages/Python/lldbsuite/test/functionalities/asan/TestReportData.py +++ b/lldb/packages/Python/lldbsuite/test/functionalities/asan/TestReportData.py @@ -16,18 +16,13 @@ class AsanTestReportDataCase(TestBase): mydir = TestBase.compute_mydir(__file__) - # The default compiler ("clang") may not support Address Sanitizer or it - # may not have the debugging API which was recently added, so we're calling - # self.useBuiltClang() to use clang from the llvm-build directory instead - @expectedFailureLinux # non-core functionality, need to reenable and fix later (DES 2014.11.07) @skipIfFreeBSD # llvm.org/pr21136 runtimes not yet available by default @skipIfRemote @skipUnlessCompilerRt @expectedFailureDarwin def test(self): - compiler = self.findBuiltClang () - self.build (None, compiler) + self.build () self.asan_tests () def setUp(self): |