diff options
author | Chris Bieneman <beanz@apple.com> | 2016-11-10 19:16:17 +0000 |
---|---|---|
committer | Chris Bieneman <beanz@apple.com> | 2016-11-10 19:16:17 +0000 |
commit | 58ddb8d0415fe3e704943118a6e3b7cf02515739 (patch) | |
tree | b680f5b0e46af3b2a19a9740c49366b411bd708f /lldb/packages/Python/lldbsuite/test/functionalities/asan/TestReportData.py | |
parent | 916f4455351ebf2422c0cf08a7cd583ef8b7684b (diff) | |
download | bcm5719-llvm-58ddb8d0415fe3e704943118a6e3b7cf02515739.tar.gz bcm5719-llvm-58ddb8d0415fe3e704943118a6e3b7cf02515739.zip |
[Test-Suite] Fix all the sanitizer tests to be based on compiler capabilities
Summary: This patch reworks all the @skip... lines for sanitizer libraries to be based on whether or not the compiler actually works, rather than whether or not the compiler-rt sources are present in some magically derived directory.
Reviewers: lldb-commits
Subscribers: kubabrecka, tfiala
Differential Revision: https://reviews.llvm.org/D26513
llvm-svn: 286490
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/functionalities/asan/TestReportData.py')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/functionalities/asan/TestReportData.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/asan/TestReportData.py b/lldb/packages/Python/lldbsuite/test/functionalities/asan/TestReportData.py index 91bfa9eb9f6..6d461b5e264 100644 --- a/lldb/packages/Python/lldbsuite/test/functionalities/asan/TestReportData.py +++ b/lldb/packages/Python/lldbsuite/test/functionalities/asan/TestReportData.py @@ -23,7 +23,7 @@ class AsanTestReportDataCase(TestBase): bugnumber="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 + @skipUnlessAddressSanitizer @expectedFailureAll(archs=['i386'], bugnumber="rdar://28658860") def test(self): self.build() |