summaryrefslogtreecommitdiff
path: root/src/VBox/Devices/testcase
diff options
context:
space:
mode:
Diffstat (limited to 'src/VBox/Devices/testcase')
-rw-r--r--src/VBox/Devices/testcase/tstDeviceStructSize.cpp6
-rw-r--r--src/VBox/Devices/testcase/tstDeviceStructSizeRC.cpp10
2 files changed, 11 insertions, 5 deletions
diff --git a/src/VBox/Devices/testcase/tstDeviceStructSize.cpp b/src/VBox/Devices/testcase/tstDeviceStructSize.cpp
index 3ab14e149..401542752 100644
--- a/src/VBox/Devices/testcase/tstDeviceStructSize.cpp
+++ b/src/VBox/Devices/testcase/tstDeviceStructSize.cpp
@@ -1,4 +1,4 @@
-/* $Id: tstDeviceStructSize.cpp 29080 2010-05-05 13:22:44Z vboxsync $ */
+/* $Id: tstDeviceStructSize.cpp 29435 2010-05-12 20:55:39Z vboxsync $ */
/** @file
* tstDeviceStructSize - testcase for check structure sizes/alignment
* and to verify that HC and RC uses the same
@@ -269,6 +269,7 @@ int main()
#ifdef VBOX_WITH_E1000
CHECK_MEMBER_ALIGNMENT(E1KSTATE, cs, 8);
CHECK_MEMBER_ALIGNMENT(E1KSTATE, csRx, 8);
+ CHECK_MEMBER_ALIGNMENT(E1KSTATE, StatReceiveBytes, 8);
#endif
#ifdef VBOX_WITH_VIRTIO
CHECK_MEMBER_ALIGNMENT(VNETSTATE, StatReceiveBytes, 8);
@@ -299,8 +300,9 @@ int main()
CHECK_MEMBER_ALIGNMENT(PCIGLOBALS, pci_irq_levels, 16);
CHECK_MEMBER_ALIGNMENT(PCNetState, u64LastPoll, 8);
CHECK_MEMBER_ALIGNMENT(PCNetState, CritSect, 8);
+ CHECK_MEMBER_ALIGNMENT(PCNetState, StatReceiveBytes, 8);
#ifdef VBOX_WITH_STATISTICS
- CHECK_MEMBER_ALIGNMENT(PCNetState, StatMMIOReadGC, 8);
+ CHECK_MEMBER_ALIGNMENT(PCNetState, StatMMIOReadRZ, 8);
#endif
CHECK_MEMBER_ALIGNMENT(PITState, StatPITIrq, 8);
CHECK_MEMBER_ALIGNMENT(SerialState, CritSect, 8);
diff --git a/src/VBox/Devices/testcase/tstDeviceStructSizeRC.cpp b/src/VBox/Devices/testcase/tstDeviceStructSizeRC.cpp
index c3416e8b8..50f129040 100644
--- a/src/VBox/Devices/testcase/tstDeviceStructSizeRC.cpp
+++ b/src/VBox/Devices/testcase/tstDeviceStructSizeRC.cpp
@@ -1,4 +1,4 @@
-/* $Id: tstDeviceStructSizeRC.cpp 29033 2010-05-04 14:42:46Z vboxsync $ */
+/* $Id: tstDeviceStructSizeRC.cpp 29614 2010-05-18 11:48:31Z vboxsync $ */
/** @file
* tstDeviceStructSizeGC - Generate structure member and size checks from the GC perspective.
*
@@ -426,12 +426,14 @@ int main()
GEN_CHECK_OFF(PCNetState, fAm79C973);
GEN_CHECK_OFF(PCNetState, u32LinkSpeed);
GEN_CHECK_OFF(PCNetState, StatReceiveBytes);
+ GEN_CHECK_OFF(PCNetState, StatTransmitBytes);
#ifdef VBOX_WITH_STATISTICS
- GEN_CHECK_OFF(PCNetState, StatMMIOReadGC);
+ GEN_CHECK_OFF(PCNetState, StatMMIOReadR3);
+ GEN_CHECK_OFF(PCNetState, StatMMIOReadRZ);
GEN_CHECK_OFF(PCNetState, StatMIIReads);
# ifdef PCNET_NO_POLLING
GEN_CHECK_OFF(PCNetState, StatRCVRingWrite);
- GEN_CHECK_OFF(PCNetState, StatRingWriteOutsideRangeGC);
+ GEN_CHECK_OFF(PCNetState, StatRingWriteOutsideRangeR3);
# endif
#endif
@@ -1456,6 +1458,7 @@ int main()
GEN_CHECK_OFF(BUSLOGIC, IBase);
GEN_CHECK_OFF(BUSLOGIC, ILeds);
GEN_CHECK_OFF(BUSLOGIC, pLedsConnector);
+ GEN_CHECK_OFF(BUSLOGIC, fSignalIdle);
#endif /* VBOX_WITH_BUSLOGIC */
#ifdef VBOX_WITH_LSILOGIC
@@ -1522,6 +1525,7 @@ int main()
GEN_CHECK_OFF(LSILOGICSCSI, ILeds);
GEN_CHECK_OFF(LSILOGICSCSI, pLedsConnector);
GEN_CHECK_OFF(LSILOGICSCSI, pConfigurationPages);
+ GEN_CHECK_OFF(LSILOGICSCSI, fSignalIdle);
#endif /* VBOX_WITH_LSILOGIC */
#ifdef VBOX_WITH_HPET