Changeset be15256 in mainline for uspace/srv/hid/display/test/display.c
- Timestamp:
- 2019-11-05T08:00:18Z (5 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- b2d1df3
- Parents:
- b3c185b6
- git-author:
- Jiri Svoboda <jiri@…> (2019-10-04 19:00:15)
- git-committer:
- Jiri Svoboda <jiri@…> (2019-11-05 08:00:18)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hid/display/test/display.c
rb3c185b6 rbe15256 39 39 PCUT_TEST_SUITE(display); 40 40 41 static void test_ds_ev_pending(void *); 42 43 static ds_client_cb_t test_ds_client_cb = { 44 .ev_pending = test_ds_ev_pending 45 }; 46 47 static void test_ds_ev_pending(void *arg) 48 { 49 printf("test_ds_ev_pending\n"); 50 } 51 52 41 53 /** Display creation and destruction. */ 42 54 PCUT_TEST(display_create_destroy) … … 62 74 PCUT_ASSERT_ERRNO_VAL(EOK, rc); 63 75 64 rc = ds_client_create(disp, NULL, &client);76 rc = ds_client_create(disp, &test_ds_client_cb, NULL, &client); 65 77 PCUT_ASSERT_ERRNO_VAL(EOK, rc); 66 78
Note:
See TracChangeset
for help on using the changeset viewer.