Skip to content

Commit 71cfce8

Browse files
committed
[lldb] Fix TestCompressedVectors after array type name change
aee4925 turns array names such as `int [1]` into `int[1]` (without the space). This probably breaks some user formatters, but let's first get this test running while this is being discussed.
1 parent a2e7af7 commit 71cfce8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lldb/test/API/functionalities/data-formatter/compactvectors/TestCompactVectors.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ def cleanup():
4949
substrs=[
5050
'(vFloat) valueFL = (1.25, 0, 0.25, 0)',
5151
'(vDouble) valueDL = (1.25, 2.25)',
52-
'(int16_t [8]) valueI16 = (1, 0, 4, 0, 0, 1, 0, 4)',
53-
'(int32_t [4]) valueI32 = (1, 0, 4, 0)',
52+
'(int16_t[8]) valueI16 = (1, 0, 4, 0, 0, 1, 0, 4)',
53+
'(int32_t[4]) valueI32 = (1, 0, 4, 0)',
5454
'(vUInt8) valueU8 = (0x01, 0x00, 0x04, 0x00, 0x00, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00)',
5555
'(vUInt16) valueU16 = (1, 0, 4, 0, 0, 1, 0, 4)',
5656
'(vUInt32) valueU32 = (1, 2, 3, 4)',

0 commit comments

Comments
 (0)