Changeset 32471 in vbox for trunk/src/VBox/Devices/testcase
- Timestamp:
- Sep 14, 2010 10:26:07 AM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 65845
- Location:
- trunk/src/VBox/Devices/testcase
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/testcase/Makefile.kmk
r28800 r32471 70 70 tstDeviceStructSizeRC_DEFS += VBOX_WITH_LSILOGIC 71 71 endif 72 ifdef VBOX_WITH_HPET73 tstDeviceStructSizeRC_DEFS += VBOX_WITH_HPET74 endif75 72 ifdef VBOX_WITH_HGSMI 76 73 tstDeviceStructSizeRC_DEFS += VBOX_WITH_HGSMI … … 109 106 ifdef VBOX_WITH_LSILOGIC 110 107 tstDeviceStructSize_DEFS += VBOX_WITH_LSILOGIC 111 endif112 ifdef VBOX_WITH_HPET113 tstDeviceStructSize_DEFS += VBOX_WITH_HPET114 endif115 ifdef VBOX_WITH_SMC116 tstDeviceStructSize_DEFS += VBOX_WITH_SMC117 endif118 ifdef VBOX_WITH_LPC119 tstDeviceStructSize_DEFS += VBOX_WITH_LPC120 108 endif 121 109 ifdef VBOX_WITH_HGSMI -
trunk/src/VBox/Devices/testcase/tstDeviceStructSize.cpp
r31901 r32471 53 53 #undef LOG_GROUP 54 54 #include "../PC/DevAPIC.cpp" 55 #ifdef VBOX_WITH_HPET 56 # undef LOG_GROUP 57 # include "../PC/DevHPET.cpp" 58 #endif 59 #ifdef VBOX_WITH_LPC 60 # undef LOG_GROUP 61 # include "../PC/DevLPC.cpp" 62 #endif 63 #ifdef VBOX_WITH_SMC 64 # undef LOG_GROUP 65 # include "../PC/DevSMC.cpp" 66 #endif 55 #undef LOG_GROUP 56 #include "../PC/DevHPET.cpp" 57 #undef LOG_GROUP 58 #include "../PC/DevLPC.cpp" 59 #undef LOG_GROUP 60 #include "../PC/DevSMC.cpp" 67 61 #undef LOG_GROUP 68 62 #include "../Storage/DevATA.cpp" -
trunk/src/VBox/Devices/testcase/tstDeviceStructSizeRC.cpp
r32300 r32471 89 89 # include "../Storage/DevLsiLogicSCSI.cpp" 90 90 #endif 91 #ifdef VBOX_WITH_HPET 92 # undef LOG_GROUP 93 # include "../PC/DevHPET.cpp" 94 #endif 91 #undef LOG_GROUP 92 #include "../PC/DevHPET.cpp" 95 93 96 94 /* we don't use iprt here because we're pretending to be in GC! */ … … 1627 1625 #endif /* VBOX_WITH_LSILOGIC */ 1628 1626 1629 #ifdef VBOX_WITH_HPET1630 1627 GEN_CHECK_SIZE(HpetState); 1631 1628 GEN_CHECK_OFF(HpetState, pDevInsR3); … … 1651 1648 GEN_CHECK_OFF(HpetTimer, u64Period); 1652 1649 GEN_CHECK_OFF(HpetTimer, u8Wrap); 1653 #endif1654 1650 1655 1651 return (0);
Note:
See TracChangeset
for help on using the changeset viewer.