diff options
| author | Siva Chandra <sivachandra@google.com> | 2015-05-27 22:03:09 +0000 |
|---|---|---|
| committer | Siva Chandra <sivachandra@google.com> | 2015-05-27 22:03:09 +0000 |
| commit | 27ab2b31436d734576fa5d15459d950a7be912ef (patch) | |
| tree | a8456a5cc0fcc8547c5fadc2f897cd7319fc480c /lldb/test/functionalities/data-formatter | |
| parent | aa8b1cb8a4949501c0c9a098cf07eb62b0a85c05 (diff) | |
| download | bcm5719-llvm-27ab2b31436d734576fa5d15459d950a7be912ef.tar.gz bcm5719-llvm-27ab2b31436d734576fa5d15459d950a7be912ef.zip | |
[TestDataFormatterUnordered] Fix a few typos in the test.
Summary: The typos were exposed by http://reviews.llvm.org/D9948.
Test Plan: dotest.py -p TestDataFormatterUnordered
Reviewers: vharron, clayborg
Reviewed By: clayborg
Subscribers: lldb-commits
Differential Revision: http://reviews.llvm.org/D10071
llvm-svn: 238361
Diffstat (limited to 'lldb/test/functionalities/data-formatter')
| -rw-r--r-- | lldb/test/functionalities/data-formatter/data-formatter-stl/libcxx/unordered/TestDataFormatterUnordered.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/test/functionalities/data-formatter/data-formatter-stl/libcxx/unordered/TestDataFormatterUnordered.py b/lldb/test/functionalities/data-formatter/data-formatter-stl/libcxx/unordered/TestDataFormatterUnordered.py index dfcd0f0073f..921f8374af6 100644 --- a/lldb/test/functionalities/data-formatter/data-formatter-stl/libcxx/unordered/TestDataFormatterUnordered.py +++ b/lldb/test/functionalities/data-formatter/data-formatter-stl/libcxx/unordered/TestDataFormatterUnordered.py @@ -31,7 +31,7 @@ class LibcxxUnorderedDataFormatterTestCase(TestBase): TestBase.setUp(self) def look_for_content_and_continue(self,var_name,substrs): - self.expect( ("frame variable %s" % var_name), substrs ) + self.expect( ("frame variable %s" % var_name), substrs=substrs) self.runCmd("continue") def data_formatter_commands(self): @@ -61,7 +61,7 @@ class LibcxxUnorderedDataFormatterTestCase(TestBase): self.expect('image list', substrs = self.getLibcPlusPlusLibs()) - self.look_for_content_and_continue("map",['size=5 {,''hello','world','this','is','me']) + self.look_for_content_and_continue("map",['size=5 {', 'hello','world','this','is','me']) self.look_for_content_and_continue("mmap",['size=6 {','first = 3','second = "this"','first = 2','second = "hello"']) self.look_for_content_and_continue("iset",['size=5 {','[0] = 5','[2] = 3','[3] = 2']) self.look_for_content_and_continue("sset",['size=5 {','[0] = "is"','[1] = "world"','[4] = "hello"']) |

