refractor test

This commit is contained in:
hathach 2013-04-05 14:05:05 +07:00
parent 68dddefe7b
commit bc9a97a1be
2 changed files with 8 additions and 7 deletions

View File

@ -93,11 +93,10 @@ void test_isr_device_connect_slowspeed(void)
void test_isr_device_disconnect(void) void test_isr_device_disconnect(void)
{ {
ehci_controller_device_unplug(hostid);
usbh_device_unplugged_isr_Expect(hostid); usbh_device_unplugged_isr_Expect(hostid);
//------------- Code Under Test -------------// //------------- Code Under Test -------------//
hcd_isr(hostid); ehci_controller_device_unplug(hostid);
TEST_ASSERT(regs->usb_cmd_bit.advacne_async); TEST_ASSERT(regs->usb_cmd_bit.advacne_async);
} }

View File

@ -170,4 +170,6 @@ void ehci_controller_device_unplug(uint8_t hostid)
regs->usb_sts_bit.port_change_detect = 1; regs->usb_sts_bit.port_change_detect = 1;
regs->portsc_bit.connect_status_change = 1; regs->portsc_bit.connect_status_change = 1;
regs->portsc_bit.current_connect_status = 0; regs->portsc_bit.current_connect_status = 0;
hcd_isr(hostid);
} }