summaryrefslogtreecommitdiffstats
path: root/lldb/test/bitfields/TestBitfields.py
diff options
context:
space:
mode:
Diffstat (limited to 'lldb/test/bitfields/TestBitfields.py')
-rw-r--r--lldb/test/bitfields/TestBitfields.py28
1 files changed, 14 insertions, 14 deletions
diff --git a/lldb/test/bitfields/TestBitfields.py b/lldb/test/bitfields/TestBitfields.py
index 6d169d3551c..0c7a4fe2b5d 100644
--- a/lldb/test/bitfields/TestBitfields.py
+++ b/lldb/test/bitfields/TestBitfields.py
@@ -61,25 +61,25 @@ class BitfieldsTestCase(TestBase):
# This should display correctly.
self.expect("frame variable -t bits", VARIABLES_DISPLAYED_CORRECTLY,
- substrs = ['(uint32_t:1) b1 = 1,',
- '(uint32_t:2) b2 = 3,',
- '(uint32_t:3) b3 = 7,',
- '(uint32_t:4) b4 = 15,',
- '(uint32_t:5) b5 = 31,',
- '(uint32_t:6) b6 = 63,',
- '(uint32_t:7) b7 = 127,',
+ substrs = ['(uint32_t:1) b1 = 1',
+ '(uint32_t:2) b2 = 3',
+ '(uint32_t:3) b3 = 7',
+ '(uint32_t:4) b4 = 15',
+ '(uint32_t:5) b5 = 31',
+ '(uint32_t:6) b6 = 63',
+ '(uint32_t:7) b7 = 127',
'(uint32_t:4) four = 15'])
# And so should this.
# rdar://problem/8348251
self.expect("frame variable -t", VARIABLES_DISPLAYED_CORRECTLY,
- substrs = ['(uint32_t:1) b1 = 1,',
- '(uint32_t:2) b2 = 3,',
- '(uint32_t:3) b3 = 7,',
- '(uint32_t:4) b4 = 15,',
- '(uint32_t:5) b5 = 31,',
- '(uint32_t:6) b6 = 63,',
- '(uint32_t:7) b7 = 127,',
+ substrs = ['(uint32_t:1) b1 = 1',
+ '(uint32_t:2) b2 = 3',
+ '(uint32_t:3) b3 = 7',
+ '(uint32_t:4) b4 = 15',
+ '(uint32_t:5) b5 = 31',
+ '(uint32_t:6) b6 = 63',
+ '(uint32_t:7) b7 = 127',
'(uint32_t:4) four = 15'])
def bitfields_variable_python(self):
OpenPOWER on IntegriCloud