VirtualBox

source: vbox/trunk/src/VBox/VMM/testcase/tstVMM.cpp@ 46860

Last change on this file since 46860 was 46299, checked in by vboxsync, 11 years ago

Use new/old RTTest APIs.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id Revision
File size: 10.0 KB
Line 
1/* $Id: tstVMM.cpp 46299 2013-05-28 15:29:28Z vboxsync $ */
2/** @file
3 * VMM Testcase.
4 */
5
6/*
7 * Copyright (C) 2006-2013 Oracle Corporation
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 */
17
18
19/*******************************************************************************
20* Header Files *
21*******************************************************************************/
22#include <VBox/vmm/vm.h>
23#include <VBox/vmm/vmm.h>
24#include <VBox/vmm/cpum.h>
25#include <VBox/vmm/tm.h>
26#include <VBox/vmm/pdmapi.h>
27#include <VBox/err.h>
28#include <VBox/log.h>
29#include <iprt/assert.h>
30#include <iprt/ctype.h>
31#include <iprt/getopt.h>
32#include <iprt/initterm.h>
33#include <iprt/message.h>
34#include <iprt/semaphore.h>
35#include <iprt/stream.h>
36#include <iprt/string.h>
37#include <iprt/test.h>
38#include <iprt/thread.h>
39
40
41/*******************************************************************************
42* Defined Constants And Macros *
43*******************************************************************************/
44#define TESTCASE "tstVMM"
45
46
47
48/*******************************************************************************
49* Global Variables *
50*******************************************************************************/
51static uint32_t g_cCpus = 1;
52
53
54/*******************************************************************************
55* Internal Functions *
56*******************************************************************************/
57VMMR3DECL(int) VMMDoTest(PVM pVM); /* Linked into VMM, see ../VMMTests.cpp. */
58
59
60/** Dummy timer callback. */
61static DECLCALLBACK(void) tstTMDummyCallback(PVM pVM, PTMTIMER pTimer, void *pvUser)
62{
63 NOREF(pVM);
64 NOREF(pTimer);
65 NOREF(pvUser);
66}
67
68
69/**
70 * This is called on each EMT and will beat TM.
71 *
72 * @returns VINF_SUCCESS, test failure is reported via RTTEST.
73 * @param pVM Pointer to the VM.
74 * @param hTest The test handle.
75 */
76DECLCALLBACK(int) tstTMWorker(PVM pVM, RTTEST hTest)
77{
78 VMCPUID idCpu = VMMGetCpuId(pVM);
79 RTTestPrintfNl(hTest, RTTESTLVL_ALWAYS, "idCpu=%d STARTING\n", idCpu);
80
81 /*
82 * Create the test set.
83 */
84 int rc;
85 PTMTIMER apTimers[5];
86 for (size_t i = 0; i < RT_ELEMENTS(apTimers); i++)
87 {
88 rc = TMR3TimerCreateInternal(pVM, i & 1 ? TMCLOCK_VIRTUAL : TMCLOCK_VIRTUAL_SYNC,
89 tstTMDummyCallback, NULL, "test timer", &apTimers[i]);
90 RTTEST_CHECK_RET(hTest, RT_SUCCESS(rc), rc);
91 }
92
93 /*
94 * The run loop.
95 */
96 unsigned uPrevPct = 0;
97 uint32_t const cLoops = 100000;
98 for (uint32_t iLoop = 0; iLoop < cLoops; iLoop++)
99 {
100 size_t cLeft = RT_ELEMENTS(apTimers);
101 unsigned i = iLoop % RT_ELEMENTS(apTimers);
102 while (cLeft-- > 0)
103 {
104 PTMTIMER pTimer = apTimers[i];
105
106 if ( cLeft == RT_ELEMENTS(apTimers) / 2
107 && TMTimerIsActive(pTimer))
108 {
109 rc = TMTimerStop(pTimer);
110 RTTEST_CHECK_MSG(hTest, RT_SUCCESS(rc), (hTest, "TMTimerStop: %Rrc\n", rc));
111 }
112 else
113 {
114 rc = TMTimerSetMicro(pTimer, 50 + cLeft);
115 RTTEST_CHECK_MSG(hTest, RT_SUCCESS(rc), (hTest, "TMTimerSetMicro: %Rrc\n", rc));
116 }
117
118 /* next */
119 i = (i + 1) % RT_ELEMENTS(apTimers);
120 }
121
122 if (i % 3)
123 TMR3TimerQueuesDo(pVM);
124
125 /* Progress report. */
126 unsigned uPct = (unsigned)(100.0 * iLoop / cLoops);
127 if (uPct != uPrevPct)
128 {
129 uPrevPct = uPct;
130 if (!(uPct % 10))
131 RTTestPrintfNl(hTest, RTTESTLVL_ALWAYS, "idCpu=%d - %3u%%\n", idCpu, uPct);
132 }
133 }
134
135 RTTestPrintfNl(hTest, RTTESTLVL_ALWAYS, "idCpu=%d DONE\n", idCpu);
136 return 0;
137}
138
139
140/** PDMR3LdrEnumModules callback, see FNPDMR3ENUM. */
141static DECLCALLBACK(int)
142tstVMMLdrEnum(PVM pVM, const char *pszFilename, const char *pszName, RTUINTPTR ImageBase, size_t cbImage, bool fGC, void *pvUser)
143{
144 NOREF(pVM); NOREF(pszFilename); NOREF(fGC); NOREF(pvUser); NOREF(cbImage);
145 RTPrintf("tstVMM: %RTptr %s\n", ImageBase, pszName);
146 return VINF_SUCCESS;
147}
148
149static DECLCALLBACK(int)
150tstVMMConfigConstructor(PUVM pUVM, PVM pVM, void *pvUser)
151{
152 NOREF(pvUser);
153 int rc = CFGMR3ConstructDefaultTree(pVM);
154 if (RT_SUCCESS(rc))
155 {
156 PCFGMNODE pRoot = CFGMR3GetRoot(pVM);
157 if (g_cCpus < 2)
158 {
159 rc = CFGMR3InsertInteger(pRoot, "HMEnabled", false);
160 RTTESTI_CHECK_MSG_RET(RT_SUCCESS(rc),
161 ("CFGMR3InsertInteger(pRoot,\"HMEnabled\",) -> %Rrc\n", rc), rc);
162 }
163 else if (g_cCpus > 1)
164 {
165 CFGMR3RemoveValue(pRoot, "NumCPUs");
166 rc = CFGMR3InsertInteger(pRoot, "NumCPUs", g_cCpus);
167 RTTESTI_CHECK_MSG_RET(RT_SUCCESS(rc),
168 ("CFGMR3InsertInteger(pRoot,\"NumCPUs\",) -> %Rrc\n", rc), rc);
169
170 CFGMR3RemoveValue(pRoot, "HwVirtExtForced");
171 rc = CFGMR3InsertInteger(pRoot, "HwVirtExtForced", true);
172 RTTESTI_CHECK_MSG_RET(RT_SUCCESS(rc),
173 ("CFGMR3InsertInteger(pRoot,\"HwVirtExtForced\",) -> %Rrc\n", rc), rc);
174 PCFGMNODE pHwVirtExt = CFGMR3GetChild(pRoot, "HWVirtExt");
175 CFGMR3RemoveNode(pHwVirtExt);
176 rc = CFGMR3InsertNode(pRoot, "HWVirtExt", &pHwVirtExt);
177 RTTESTI_CHECK_MSG_RET(RT_SUCCESS(rc),
178 ("CFGMR3InsertNode(pRoot,\"HWVirtExt\",) -> %Rrc\n", rc), rc);
179 rc = CFGMR3InsertInteger(pHwVirtExt, "Enabled", true);
180 RTTESTI_CHECK_MSG_RET(RT_SUCCESS(rc),
181 ("CFGMR3InsertInteger(pHwVirtExt,\"Enabled\",) -> %Rrc\n", rc), rc);
182 rc = CFGMR3InsertInteger(pHwVirtExt, "64bitEnabled", false);
183 RTTESTI_CHECK_MSG_RET(RT_SUCCESS(rc),
184 ("CFGMR3InsertInteger(pHwVirtExt,\"64bitEnabled\",) -> %Rrc\n", rc), rc);
185 }
186 }
187 return rc;
188}
189
190
191int main(int argc, char **argv)
192{
193 /*
194 * Init runtime and the test environment.
195 */
196 RTTEST hTest;
197 RTEXITCODE rcExit = RTTestInitExAndCreate(argc, &argv, RTR3INIT_FLAGS_SUPLIB, "tstVMM", &hTest);
198 if (rcExit != RTEXITCODE_SUCCESS)
199 return rcExit;
200
201 /*
202 * Parse arguments.
203 */
204 static const RTGETOPTDEF s_aOptions[] =
205 {
206 { "--cpus", 'c', RTGETOPT_REQ_UINT8 },
207 { "--test", 't', RTGETOPT_REQ_STRING },
208 };
209 enum
210 {
211 kTstVMMTest_VMM, kTstVMMTest_TM
212 } enmTestOpt = kTstVMMTest_VMM;
213
214 int ch;
215 RTGETOPTUNION ValueUnion;
216 RTGETOPTSTATE GetState;
217 RTGetOptInit(&GetState, argc, argv, s_aOptions, RT_ELEMENTS(s_aOptions), 1, 0);
218 while ((ch = RTGetOpt(&GetState, &ValueUnion)))
219 {
220 switch (ch)
221 {
222 case 'c':
223 g_cCpus = ValueUnion.u8;
224 break;
225
226 case 't':
227 if (!strcmp("vmm", ValueUnion.psz))
228 enmTestOpt = kTstVMMTest_VMM;
229 else if (!strcmp("tm", ValueUnion.psz))
230 enmTestOpt = kTstVMMTest_TM;
231 else
232 {
233 RTPrintf("tstVMM: unknown test: '%s'\n", ValueUnion.psz);
234 return 1;
235 }
236 break;
237
238 case 'h':
239 RTPrintf("usage: tstVMM [--cpus|-c cpus] [--test <vmm|tm>]\n");
240 return 1;
241
242 case 'V':
243 RTPrintf("$Revision$\n");
244 return 0;
245
246 default:
247 return RTGetOptPrintError(ch, &ValueUnion);
248 }
249 }
250
251 /*
252 * Create the test VM.
253 */
254 RTPrintf(TESTCASE ": Initializing...\n");
255 PVM pVM;
256 PUVM pUVM;
257 int rc = VMR3Create(g_cCpus, NULL, NULL, NULL, tstVMMConfigConstructor, NULL, &pVM, &pUVM);
258 if (RT_SUCCESS(rc))
259 {
260 PDMR3LdrEnumModules(pVM, tstVMMLdrEnum, NULL);
261 RTStrmFlush(g_pStdOut);
262 RTThreadSleep(256);
263
264 /*
265 * Do the requested testing.
266 */
267 switch (enmTestOpt)
268 {
269 case kTstVMMTest_VMM:
270 {
271 RTTestSub(hTest, "VMM");
272 rc = VMR3ReqCallWaitU(pUVM, VMCPUID_ANY, (PFNRT)VMMDoTest, 1, pVM);
273 if (RT_FAILURE(rc))
274 RTTestFailed(hTest, "VMMDoTest failed: rc=%Rrc\n", rc);
275 break;
276 }
277
278 case kTstVMMTest_TM:
279 {
280 RTTestSub(hTest, "TM");
281 for (VMCPUID idCpu = 1; idCpu < g_cCpus; idCpu++)
282 {
283 rc = VMR3ReqCallNoWaitU(pUVM, idCpu, (PFNRT)tstTMWorker, 2, pVM, hTest);
284 if (RT_FAILURE(rc))
285 RTTestFailed(hTest, "VMR3ReqCall failed: rc=%Rrc\n", rc);
286 }
287
288 rc = VMR3ReqCallWaitU(pUVM, 0 /*idDstCpu*/, (PFNRT)tstTMWorker, 2, pVM, hTest);
289 if (RT_FAILURE(rc))
290 RTTestFailed(hTest, "VMMDoTest failed: rc=%Rrc\n", rc);
291 break;
292 }
293 }
294
295 STAMR3Dump(pUVM, "*");
296
297 /*
298 * Cleanup.
299 */
300 rc = VMR3PowerOff(pUVM);
301 if (RT_FAILURE(rc))
302 RTTestFailed(hTest, "VMR3PowerOff failed: rc=%Rrc\n", rc);
303 rc = VMR3Destroy(pUVM);
304 if (RT_FAILURE(rc))
305 RTTestFailed(hTest, "VMR3Destroy failed: rc=%Rrc\n", rc);
306 VMR3ReleaseUVM(pUVM);
307 }
308 else
309 RTTestFailed(hTest, "VMR3Create failed: rc=%Rrc\n", rc);
310
311 return RTTestSummaryAndDestroy(hTest);
312}
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette