diff options
author | Pavel Labath <labath@google.com> | 2017-04-12 10:59:24 +0000 |
---|---|---|
committer | Pavel Labath <labath@google.com> | 2017-04-12 10:59:24 +0000 |
commit | d3656a03ab30554bb854d76e09706a887f429233 (patch) | |
tree | e1195033408a476b802b4da95e6f9487e642c0d2 /lldb/packages/Python/lldbsuite/test | |
parent | 74207ad7ba6115000911a7d6183c02177bdd8feb (diff) | |
download | bcm5719-llvm-d3656a03ab30554bb854d76e09706a887f429233.tar.gz bcm5719-llvm-d3656a03ab30554bb854d76e09706a887f429233.zip |
Fix libc++ vector<bool> data formatter (bug #32553)
Summary:
The iteration list through the available data formatters was undefined,
which meant that the vector<bool> formatter kicked in only in cases
where it happened to be queried before the general vector formatter. To
fix this, I merge the two data formatter entries into one, and select
which implementation to use in the factory function.
Reviewers: jasonmolenda, tberghammer, EricWF
Subscribers: lldb-commits
Differential Revision: https://reviews.llvm.org/D31880
llvm-svn: 300047
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/vbool/TestDataFormatterLibcxxVBool.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/vbool/TestDataFormatterLibcxxVBool.py b/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/vbool/TestDataFormatterLibcxxVBool.py index a2b8b2b1e6f..a7a00068383 100644 --- a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/vbool/TestDataFormatterLibcxxVBool.py +++ b/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/vbool/TestDataFormatterLibcxxVBool.py @@ -24,7 +24,6 @@ class LibcxxVBoolDataFormatterTestCase(TestBase): self.line = line_number('main.cpp', '// Set break point at this line.') @add_test_categories(["libc++"]) - @expectedFailureAll(bugnumber="llvm.org/pr32553") def test_with_run_command(self): """Test that that file and class static variables display correctly.""" self.build() |