diff options
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/functionalities/asan/TestMemoryHistory.py | 7 | ||||
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/functionalities/asan/TestReportData.py | 7 |
2 files changed, 2 insertions, 12 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/asan/TestMemoryHistory.py b/lldb/packages/Python/lldbsuite/test/functionalities/asan/TestMemoryHistory.py index 7dbcbfaaa4a..e92b967d8ad 100644 --- a/lldb/packages/Python/lldbsuite/test/functionalities/asan/TestMemoryHistory.py +++ b/lldb/packages/Python/lldbsuite/test/functionalities/asan/TestMemoryHistory.py @@ -15,18 +15,13 @@ class AsanTestCase(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): 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): |