[lldb] Fix TestCompressedVectors after array type name change

aee4925507 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.
This commit is contained in:
Raphael Isemann 2021-10-22 10:07:58 +02:00
parent a2e7af7516
commit 71cfce8320
1 changed files with 2 additions and 2 deletions
lldb/test/API/functionalities/data-formatter/compactvectors

View File

@ -49,8 +49,8 @@ class CompactVectorsFormattingTestCase(TestBase):
substrs=[
'(vFloat) valueFL = (1.25, 0, 0.25, 0)',
'(vDouble) valueDL = (1.25, 2.25)',
'(int16_t [8]) valueI16 = (1, 0, 4, 0, 0, 1, 0, 4)',
'(int32_t [4]) valueI32 = (1, 0, 4, 0)',
'(int16_t[8]) valueI16 = (1, 0, 4, 0, 0, 1, 0, 4)',
'(int32_t[4]) valueI32 = (1, 0, 4, 0)',
'(vUInt8) valueU8 = (0x01, 0x00, 0x04, 0x00, 0x00, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00)',
'(vUInt16) valueU16 = (1, 0, 4, 0, 0, 1, 0, 4)',
'(vUInt32) valueU32 = (1, 2, 3, 4)',