diff options
author | Shafik Yaghmour <syaghmour@apple.com> | 2019-08-02 18:16:04 +0000 |
---|---|---|
committer | Shafik Yaghmour <syaghmour@apple.com> | 2019-08-02 18:16:04 +0000 |
commit | c5d401453553b4c870338cc3a13fe17a7d464f09 (patch) | |
tree | 1e76d2907435267ae9302efc3df9bc753de0d304 /lldb/packages/Python/lldbsuite/test | |
parent | e4c46c34cec6944bc059cb582ea9f80428ccf066 (diff) | |
download | bcm5719-llvm-c5d401453553b4c870338cc3a13fe17a7d464f09.tar.gz bcm5719-llvm-c5d401453553b4c870338cc3a13fe17a7d464f09.zip |
[Formatters] Temporarily disable libc++ std::function formatter due to performance issue
Summary: We have been seeing increased reports of performance issue around large project and formatting std::function variables especially in functions signatures in back traces. There are some possible fixes but exploring those fixes may take time and it is better to temporarily disable the formatter due to its impact and re-enable it once we have a fix.
Differential Revision: https://reviews.llvm.org/D65666
llvm-svn: 367701
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/function/TestLibCxxFunction.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/function/TestLibCxxFunction.py b/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/function/TestLibCxxFunction.py index a78015ddaf6..f06ab5d70ba 100644 --- a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/function/TestLibCxxFunction.py +++ b/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/function/TestLibCxxFunction.py @@ -21,6 +21,9 @@ class LibCxxFunctionTestCase(TestBase): var.SetPreferSyntheticValue(True) return var + # Temporarily skipping for everywhere b/c we are disabling the std::function formatter + # due to performance issues but plan on turning it back on once they are addressed. + @skipIf @add_test_categories(["libc++"]) def test(self): """Test that std::function as defined by libc++ is correctly printed by LLDB""" |