Changeset 78f0422c in mainline for uspace/srv/hid/display/test/window.c
- Timestamp:
- 2023-10-22T17:27:09Z (16 months ago)
- Branches:
- master, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 133461c
- Parents:
- 71b4444 (diff), dfb16c4 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hid/display/test/window.c
r71b4444 r78f0422c 1109 1109 PCUT_ASSERT_EQUALS(wnd->display->cursor[dcurs_arrow], wnd->cursor); 1110 1110 1111 // Check that invalid cursors cannot be set: ignore enum conversions 1112 // as we are out-of-bounds 1113 #pragma GCC diagnostic push 1114 #if defined(__GNUC__) && (__GNUC__ >= 10) 1115 #pragma GCC diagnostic ignored "-Wenum-conversion" 1116 #endif 1111 1117 rc = ds_window_set_cursor(wnd, dcurs_limit); 1112 1118 PCUT_ASSERT_ERRNO_VAL(EINVAL, rc); … … 1116 1122 PCUT_ASSERT_ERRNO_VAL(EINVAL, rc); 1117 1123 PCUT_ASSERT_EQUALS(wnd->display->cursor[dcurs_arrow], wnd->cursor); 1124 #pragma GCC diagnostic pop 1118 1125 1119 1126 rc = ds_window_set_cursor(wnd, dcurs_size_lr);
Note:
See TracChangeset
for help on using the changeset viewer.