[Lldb-commits] [lldb] r357210 - Fix for regression test, since we rely on the formatter for std::vector in the test we need a libc++ category.
Shafik Yaghmour via lldb-commits
lldb-commits at lists.llvm.org
Thu Mar 28 13:25:57 PDT 2019
Author: shafik
Date: Thu Mar 28 13:25:57 2019
New Revision: 357210
URL: http://llvm.org/viewvc/llvm-project?rev=357210&view=rev
Log:
Fix for regression test, since we rely on the formatter for std::vector in the test we need a libc++ category.
See differential https://reviews.llvm.org/D59847 for initial change that this fixes
Modified:
lldb/trunk/packages/Python/lldbsuite/test/expression_command/vector_of_enums/TestVectorOfEnums.py
Modified: lldb/trunk/packages/Python/lldbsuite/test/expression_command/vector_of_enums/TestVectorOfEnums.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/expression_command/vector_of_enums/TestVectorOfEnums.py?rev=357210&r1=357209&r2=357210&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/expression_command/vector_of_enums/TestVectorOfEnums.py (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/expression_command/vector_of_enums/TestVectorOfEnums.py Thu Mar 28 13:25:57 2019
@@ -13,6 +13,7 @@ class TestVectorOfEnums(TestBase):
mydir = TestBase.compute_mydir(__file__)
+ @add_test_categories(["libc++"])
def test_vector_of_enums(self):
self.build()
More information about the lldb-commits
mailing list