diff options
| author | hathach <[email protected]> | 2013-03-12 00:10:52 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2013-03-12 00:10:52 +0700 |
| commit | 38ff7123b4f43aa85ce1848a0cb99bb73303cadd (patch) | |
| tree | 7ee7d6d883d6f0b11cefd98b8ff3e10572d581c1 /tests | |
| parent | 8eaad2326b26f542ba66ea305a40dd4c8e49f421 (diff) | |
add semaphore reset & queue flush API for osal
add semaphore reset when opening control pipe
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/test/host/test_enum_task.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/test/host/test_enum_task.c b/tests/test/host/test_enum_task.c index 43238b06b..30d99692f 100644 --- a/tests/test/host/test_enum_task.c +++ b/tests/test/host/test_enum_task.c @@ -71,6 +71,7 @@ void setUp(void) hcd_pipe_control_xfer_StubWithCallback(control_xfer_stub); hcd_port_connect_status_ExpectAndReturn(enum_connect.core_id, true); + osal_semaphore_reset_Expect( usbh_device_info_pool[0].sem_hdl ); hcd_pipe_control_open_ExpectAndReturn(0, 8, TUSB_ERROR_NONE); } @@ -187,6 +188,7 @@ void test_enum_failed_get_full_dev_desc(void) osal_semaphore_wait_StubWithCallback(semaphore_wait_timeout_stub(2)); hcd_pipe_control_close_ExpectAndReturn(0, TUSB_ERROR_NONE); + osal_semaphore_reset_Expect( usbh_device_info_pool[0].sem_hdl ); hcd_pipe_control_open_ExpectAndReturn(1, desc_device.bMaxPacketSize0, TUSB_ERROR_NONE); tusbh_device_mount_failed_cb_Expect(TUSB_ERROR_USBH_MOUNT_DEVICE_NOT_RESPOND, NULL); @@ -204,6 +206,7 @@ void test_enum_failed_get_9byte_config_desc(void) osal_semaphore_wait_StubWithCallback(semaphore_wait_timeout_stub(3)); hcd_pipe_control_close_ExpectAndReturn(0, TUSB_ERROR_NONE); + osal_semaphore_reset_Expect( usbh_device_info_pool[0].sem_hdl ); hcd_pipe_control_open_ExpectAndReturn(1, desc_device.bMaxPacketSize0, TUSB_ERROR_NONE); tusbh_device_attached_cb_ExpectAndReturn((tusb_descriptor_device_t*) enum_data_buffer, 1); tusbh_device_mount_failed_cb_Expect(TUSB_ERROR_USBH_MOUNT_DEVICE_NOT_RESPOND, NULL); @@ -219,6 +222,7 @@ void test_enum_failed_get_full_config_desc(void) { osal_semaphore_wait_StubWithCallback(semaphore_wait_timeout_stub(4)); hcd_pipe_control_close_ExpectAndReturn(0, TUSB_ERROR_NONE); + osal_semaphore_reset_Expect( usbh_device_info_pool[0].sem_hdl ); hcd_pipe_control_open_ExpectAndReturn(1, desc_device.bMaxPacketSize0, TUSB_ERROR_NONE); tusbh_device_attached_cb_ExpectAndReturn((tusb_descriptor_device_t*) enum_data_buffer, 1); tusbh_device_mount_failed_cb_Expect(TUSB_ERROR_USBH_MOUNT_DEVICE_NOT_RESPOND, NULL); @@ -235,6 +239,7 @@ void test_enum_parse_config_desc(void) { osal_semaphore_wait_StubWithCallback(semaphore_wait_timeout_stub(5)); hcd_pipe_control_close_ExpectAndReturn(0, TUSB_ERROR_NONE); + osal_semaphore_reset_Expect( usbh_device_info_pool[0].sem_hdl ); hcd_pipe_control_open_ExpectAndReturn(1, desc_device.bMaxPacketSize0, TUSB_ERROR_NONE); tusbh_device_attached_cb_ExpectAndReturn((tusb_descriptor_device_t*) enum_data_buffer, 1); @@ -250,6 +255,7 @@ void test_enum_set_configure(void) { osal_semaphore_wait_StubWithCallback(semaphore_wait_timeout_stub(6)); hcd_pipe_control_close_ExpectAndReturn(0, TUSB_ERROR_NONE); + osal_semaphore_reset_Expect( usbh_device_info_pool[0].sem_hdl ); hcd_pipe_control_open_ExpectAndReturn(1, desc_device.bMaxPacketSize0, TUSB_ERROR_NONE); tusbh_device_attached_cb_ExpectAndReturn((tusb_descriptor_device_t*) enum_data_buffer, 1); class_install_expect(); |
