diff options
author | Pavel Labath <pavel@labath.sk> | 2019-02-27 14:26:48 +0000 |
---|---|---|
committer | Pavel Labath <pavel@labath.sk> | 2019-02-27 14:26:48 +0000 |
commit | d73a67a799a116857b4e316814c6e8ee5c7b13a6 (patch) | |
tree | a95841224747fbd36c58b79bcc7d09f258c794df /lldb/packages/Python/lldbsuite/test | |
parent | 11bc3f49da6c687cea018872c3890fd2237584a5 (diff) | |
download | bcm5719-llvm-d73a67a799a116857b4e316814c6e8ee5c7b13a6.tar.gz bcm5719-llvm-d73a67a799a116857b4e316814c6e8ee5c7b13a6.zip |
Remove XFAIL-Linux from two asan tests
It turns out these tests actually succeed, if one has a clang with
address sanitizer support enabled (i.e., has enabled the compiler-rt
project). I guess none of the linux lldb devs have done that until now.
llvm-svn: 354976
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/functionalities/asan/TestMemoryHistory.py | 3 | ||||
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/functionalities/asan/TestReportData.py | 3 |
2 files changed, 0 insertions, 6 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/asan/TestMemoryHistory.py b/lldb/packages/Python/lldbsuite/test/functionalities/asan/TestMemoryHistory.py index 5827dc3b465..17edf850eaa 100644 --- a/lldb/packages/Python/lldbsuite/test/functionalities/asan/TestMemoryHistory.py +++ b/lldb/packages/Python/lldbsuite/test/functionalities/asan/TestMemoryHistory.py @@ -18,9 +18,6 @@ class AsanTestCase(TestBase): mydir = TestBase.compute_mydir(__file__) - @expectedFailureAll( - oslist=["linux"], - 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 @skipUnlessAddressSanitizer diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/asan/TestReportData.py b/lldb/packages/Python/lldbsuite/test/functionalities/asan/TestReportData.py index ca070fa97df..fcb2f47cadd 100644 --- a/lldb/packages/Python/lldbsuite/test/functionalities/asan/TestReportData.py +++ b/lldb/packages/Python/lldbsuite/test/functionalities/asan/TestReportData.py @@ -18,9 +18,6 @@ class AsanTestReportDataCase(TestBase): mydir = TestBase.compute_mydir(__file__) - @expectedFailureAll( - oslist=["linux"], - 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 @skipUnlessAddressSanitizer |