Changeset 92302 in vbox for trunk/src/VBox/ValidationKit
- Timestamp:
- Nov 9, 2021 9:26:03 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/common/constants/valueunit.py
r82968 r92302 70 70 PPM = 0x1e; 71 71 PPB = 0x1f; 72 END = 0x20; 72 TICKS = 0x20; 73 TICKS_PER_CALL = 0x21; 74 TICKS_PER_OCCURENCE = 0x22; 75 PAGES = 0x23; 76 PAGES_PER_SEC = 0x24; 77 TICKS_PER_PAGE = 0x25; 78 NS_PER_PAGE = 0x26; 79 END = 0x27; 73 80 ## @} 74 81 … … 109 116 'ppm', 110 117 'ppb', 118 'ticks', 119 'ticks/call', 120 'ticks/occ', 121 'pages', 122 'pages/sec', 123 'ticks/page', 124 'ns/page', 111 125 ]; 112 126 assert g_asNames[PP1K] == 'pp1k'; 127 assert g_asNames[NS_PER_PAGE] == 'ns/page'; 113 128 114 129
Note:
See TracChangeset
for help on using the changeset viewer.