<div dir="ltr">Thanks for the fix! (is there a buildbot email I should've got (or did and failed to understand) about this?)</div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Fri, Oct 22, 2021 at 1:16 AM Raphael Isemann via lldb-commits <<a href="mailto:lldb-commits@lists.llvm.org">lldb-commits@lists.llvm.org</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><br>
Author: Raphael Isemann<br>
Date: 2021-10-22T10:15:53+02:00<br>
New Revision: 71cfce832054dfea8e79769f15a3fdc05d23b733<br>
<br>
URL: <a href="https://github.com/llvm/llvm-project/commit/71cfce832054dfea8e79769f15a3fdc05d23b733" rel="noreferrer" target="_blank">https://github.com/llvm/llvm-project/commit/71cfce832054dfea8e79769f15a3fdc05d23b733</a><br>
DIFF: <a href="https://github.com/llvm/llvm-project/commit/71cfce832054dfea8e79769f15a3fdc05d23b733.diff" rel="noreferrer" target="_blank">https://github.com/llvm/llvm-project/commit/71cfce832054dfea8e79769f15a3fdc05d23b733.diff</a><br>
<br>
LOG: [lldb] Fix TestCompressedVectors after array type name change<br>
<br>
aee49255074fd4ef38d97e6e70cbfbf2f9fd0fa7 turns array names such as `int [1]`<br>
into `int[1]` (without the space). This probably breaks some user formatters,<br>
but let's first get this test running while this is being discussed.<br>
<br>
Added: <br>
<br>
<br>
Modified: <br>
    lldb/test/API/functionalities/data-formatter/compactvectors/TestCompactVectors.py<br>
<br>
Removed: <br>
<br>
<br>
<br>
################################################################################<br>
diff  --git a/lldb/test/API/functionalities/data-formatter/compactvectors/TestCompactVectors.py b/lldb/test/API/functionalities/data-formatter/compactvectors/TestCompactVectors.py<br>
index 4b36d02da14df..d7d5579b5fdbc 100644<br>
--- a/lldb/test/API/functionalities/data-formatter/compactvectors/TestCompactVectors.py<br>
+++ b/lldb/test/API/functionalities/data-formatter/compactvectors/TestCompactVectors.py<br>
@@ -49,8 +49,8 @@ def cleanup():<br>
             substrs=[<br>
                 '(vFloat) valueFL = (1.25, 0, 0.25, 0)',<br>
                 '(vDouble) valueDL = (1.25, 2.25)',<br>
-                '(int16_t [8]) valueI16 = (1, 0, 4, 0, 0, 1, 0, 4)',<br>
-                '(int32_t [4]) valueI32 = (1, 0, 4, 0)',<br>
+                '(int16_t[8]) valueI16 = (1, 0, 4, 0, 0, 1, 0, 4)',<br>
+                '(int32_t[4]) valueI32 = (1, 0, 4, 0)',<br>
                 '(vUInt8) valueU8 = (0x01, 0x00, 0x04, 0x00, 0x00, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00)',<br>
                 '(vUInt16) valueU16 = (1, 0, 4, 0, 0, 1, 0, 4)',<br>
                 '(vUInt32) valueU32 = (1, 2, 3, 4)',<br>
<br>
<br>
<br>
_______________________________________________<br>
lldb-commits mailing list<br>
<a href="mailto:lldb-commits@lists.llvm.org" target="_blank">lldb-commits@lists.llvm.org</a><br>
<a href="https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits" rel="noreferrer" target="_blank">https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits</a><br>
</blockquote></div>