Changeset 93754 in vbox for trunk/src/VBox/ValidationKit/common/constants/valueunit.py
- Timestamp:
- Feb 15, 2022 2:29:56 PM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 149937
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/common/constants/valueunit.py
r93115 r93754 77 77 TICKS_PER_PAGE = 0x25; 78 78 NS_PER_PAGE = 0x26; 79 END = 0x27; 79 PS = 0x27; 80 PS_PER_CALL = 0x28; 81 PS_PER_FRAME = 0x29; 82 PS_PER_OCCURRENCE = 0x2a; 83 PS_PER_PACKET = 0x2b; 84 PS_PER_ROUND_TRIP = 0x2c; 85 PS_PER_PAGE = 0x2d; 86 END = 0x2e; 80 87 ## @} 81 88 … … 123 130 'ticks/page', 124 131 'ns/page', 132 'ps', 133 'ps/call', 134 'ps/frame', 135 'ps/occurrences', 136 'ps/packet', 137 'ps/roundtrips', 138 'ps/page', 125 139 ]; 126 140 assert g_asNames[PP1K] == 'pp1k'; 127 141 assert g_asNames[NS_PER_PAGE] == 'ns/page'; 142 assert g_asNames[PS_PER_PAGE] == 'ps/page'; 128 143 129 144
Note:
See TracChangeset
for help on using the changeset viewer.