[Lldb-commits] [lldb] 7518006 - [lldb] XFAIL TestMemoryHistory on Linux
Raphael Isemann via lldb-commits
lldb-commits at lists.llvm.org
Wed Aug 26 01:24:33 PDT 2020
Author: Raphael Isemann
Date: 2020-08-26T10:24:13+02:00
New Revision: 7518006d75accd21325747430d6bced66b2c5ada
URL: https://github.com/llvm/llvm-project/commit/7518006d75accd21325747430d6bced66b2c5ada
DIFF: https://github.com/llvm/llvm-project/commit/7518006d75accd21325747430d6bced66b2c5ada.diff
LOG: [lldb] XFAIL TestMemoryHistory on Linux
This test appears to have never worked on Linux but it seems none of the current
bots ever ran this test as it required enabling compiler-rt (otherwise it
would have just been skipped).
This just copies over the XFAIL decorator that are already on all other sanitizer
tests.
Added:
Modified:
lldb/test/API/functionalities/asan/TestMemoryHistory.py
Removed:
################################################################################
diff --git a/lldb/test/API/functionalities/asan/TestMemoryHistory.py b/lldb/test/API/functionalities/asan/TestMemoryHistory.py
index 37c34984f43b..0b8dc20f27c5 100644
--- a/lldb/test/API/functionalities/asan/TestMemoryHistory.py
+++ b/lldb/test/API/functionalities/asan/TestMemoryHistory.py
@@ -15,6 +15,9 @@ 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
@expectedFailureNetBSD
@skipUnlessAddressSanitizer
More information about the lldb-commits
mailing list