diff options
author | Enrico Granata <egranata@apple.com> | 2015-11-20 19:25:39 +0000 |
---|---|---|
committer | Enrico Granata <egranata@apple.com> | 2015-11-20 19:25:39 +0000 |
commit | 7b57d87ed7b23ae6745053d13ad0178fd4ec7151 (patch) | |
tree | 25cde7f7638e0dd9921eba2b978e3f3bbe65cce6 /lldb/packages/Python/lldbsuite/test/functionalities/asan/TestReportData.py | |
parent | 925b193eed58459894e9f443fe1ba0b225c276ca (diff) | |
download | bcm5719-llvm-7b57d87ed7b23ae6745053d13ad0178fd4ec7151.tar.gz bcm5719-llvm-7b57d87ed7b23ae6745053d13ad0178fd4ec7151.zip |
Use the system clang, since this support should now be in; does not un-xfail the test yet
llvm-svn: 253697
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): |