Aug. 17, 2026
8:07 a.m.
Rémi Bernon (@rbernon) commented about dlls/user32/tests/input.c:
+ { + unsigned int line; + struct + { + BOOL absolute, no_coalesce, increment_pos, end; + } + inputs[8]; + LPARAM expected_info[8]; + } + coalesce_tests[] = + { + /* Relative only. */ + { + __LINE__, {{ FALSE, FALSE, TRUE }, { FALSE, FALSE, TRUE }, { .end = TRUE }}, + { 2 | BROKEN_INFO(1) }, + }, These TRUE / FALSE array of arrays aren't very readable, can we make it better? Also, do you have any idea how reliable the tests are?
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/11659#note_149042