Changeset f5fc6a8 in mainline
- Timestamp:
- 2023-07-24T17:53:21Z (18 months ago)
- Branches:
- ticket/834-toolchain-update
- Children:
- 1339fd9
- Parents:
- 474fd65
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hid/display/test/window.c
r474fd65 rf5fc6a8 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 #pragma GCC diagnostic ignored "-Wenum-conversion" 1111 1115 rc = ds_window_set_cursor(wnd, dcurs_limit); 1112 1116 PCUT_ASSERT_ERRNO_VAL(EINVAL, rc); … … 1116 1120 PCUT_ASSERT_ERRNO_VAL(EINVAL, rc); 1117 1121 PCUT_ASSERT_EQUALS(wnd->display->cursor[dcurs_arrow], wnd->cursor); 1122 #pragma GCC diagnostic pop 1118 1123 1119 1124 rc = ds_window_set_cursor(wnd, dcurs_size_lr);
Note:
See TracChangeset
for help on using the changeset viewer.