diff options
author | vboxsync <vboxsync@cfe28804-0f27-0410-a406-dd0f0b0b656f> | 2021-11-09 21:26:03 +0000 |
---|---|---|
committer | vboxsync <vboxsync@cfe28804-0f27-0410-a406-dd0f0b0b656f> | 2021-11-09 21:26:03 +0000 |
commit | cd2ea441befd6a4fd4009e339a49a58211a4e00e (patch) | |
tree | 057d0e60dd25e8aca3951b5a1f77ffb7d1f8bdb4 /src/VBox/ValidationKit/common | |
parent | 071416df4d041fe7ed5754c98fed63b2ed5ea8a7 (diff) | |
download | VirtualBox-svn-cd2ea441befd6a4fd4009e339a49a58211a4e00e.tar.gz |
ValKit: Some new test units - forgot testmanager. bugref:10093
git-svn-id: https://www.virtualbox.org/svn/vbox/trunk@92302 cfe28804-0f27-0410-a406-dd0f0b0b656f
Diffstat (limited to 'src/VBox/ValidationKit/common')
-rw-r--r-- | src/VBox/ValidationKit/common/constants/valueunit.py | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/src/VBox/ValidationKit/common/constants/valueunit.py b/src/VBox/ValidationKit/common/constants/valueunit.py index 3967a19281c..f572039ac71 100644 --- a/src/VBox/ValidationKit/common/constants/valueunit.py +++ b/src/VBox/ValidationKit/common/constants/valueunit.py @@ -69,7 +69,14 @@ PP1K = 0x1c; PP10K = 0x1d; PPM = 0x1e; PPB = 0x1f; -END = 0x20; +TICKS = 0x20; +TICKS_PER_CALL = 0x21; +TICKS_PER_OCCURENCE = 0x22; +PAGES = 0x23; +PAGES_PER_SEC = 0x24; +TICKS_PER_PAGE = 0x25; +NS_PER_PAGE = 0x26; +END = 0x27; ## @} @@ -108,8 +115,16 @@ g_asNames = \ 'pp10k', 'ppm', 'ppb', + 'ticks', + 'ticks/call', + 'ticks/occ', + 'pages', + 'pages/sec', + 'ticks/page', + 'ns/page', ]; assert g_asNames[PP1K] == 'pp1k'; +assert g_asNames[NS_PER_PAGE] == 'ns/page'; ## Translation table for XML -> number. |