1 | /* $Id: tstVMM.cpp 17451 2007-01-15 14:08:28Z bird $ */
|
---|
2 | /** @file
|
---|
3 | * VMM Testcase.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2006-2007 innotek GmbH
|
---|
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/vm.h>
|
---|
23 | #include <VBox/vmm.h>
|
---|
24 | #include <VBox/cpum.h>
|
---|
25 | #include <VBox/err.h>
|
---|
26 | #include <VBox/log.h>
|
---|
27 | #include <iprt/assert.h>
|
---|
28 | #include <iprt/runtime.h>
|
---|
29 | #include <iprt/semaphore.h>
|
---|
30 | #include <iprt/stream.h>
|
---|
31 |
|
---|
32 |
|
---|
33 | /*******************************************************************************
|
---|
34 | * Defined Constants And Macros *
|
---|
35 | *******************************************************************************/
|
---|
36 | #define TESTCASE "tstVMM-HwAccm"
|
---|
37 |
|
---|
38 | VMMR3DECL(int) VMMDoHwAccmTest(PVM pVM);
|
---|
39 |
|
---|
40 |
|
---|
41 | DECLCALLBACK(int) CFGMConstructor(PVM pVM, void *pvUser)
|
---|
42 | {
|
---|
43 | /*
|
---|
44 | * Get root node first.
|
---|
45 | * This is the only node in the tree.
|
---|
46 | */
|
---|
47 | PCFGMNODE pRoot = CFGMR3GetRoot(pVM);
|
---|
48 | int rc = CFGMR3InsertInteger(pRoot, "RamSize", 32*1024*1024);
|
---|
49 |
|
---|
50 | PCFGMNODE pHWVirtExt;
|
---|
51 | rc = CFGMR3InsertNode(pRoot, "HWVirtExt", &pHWVirtExt);
|
---|
52 | AssertRC(rc);
|
---|
53 | rc = CFGMR3InsertInteger(pHWVirtExt, "Enabled", 1);
|
---|
54 | AssertRC(rc);
|
---|
55 |
|
---|
56 | return VINF_SUCCESS;
|
---|
57 | }
|
---|
58 |
|
---|
59 | int main(int argc, char **argv)
|
---|
60 | {
|
---|
61 | int rcRet = 0; /* error count. */
|
---|
62 |
|
---|
63 | RTR3Init();
|
---|
64 |
|
---|
65 | /*
|
---|
66 | * Create empty VM.
|
---|
67 | */
|
---|
68 | RTPrintf(TESTCASE ": Initializing...\n");
|
---|
69 | PVM pVM;
|
---|
70 | int rc = VMR3Create(NULL, NULL, CFGMConstructor, NULL, &pVM);
|
---|
71 | if (VBOX_SUCCESS(rc))
|
---|
72 | {
|
---|
73 | /*
|
---|
74 | * Do testing.
|
---|
75 | */
|
---|
76 | RTPrintf(TESTCASE ": Testing...\n");
|
---|
77 | PVMREQ pReq1 = NULL;
|
---|
78 | rc = VMR3ReqCall(pVM, &pReq1, RT_INDEFINITE_WAIT, (PFNRT)VMMDoHwAccmTest, 1, pVM);
|
---|
79 | AssertRC(rc);
|
---|
80 | VMR3ReqFree(pReq1);
|
---|
81 |
|
---|
82 | STAMR3Dump(pVM, "*");
|
---|
83 |
|
---|
84 | /*
|
---|
85 | * Cleanup.
|
---|
86 | */
|
---|
87 | rc = VMR3Destroy(pVM);
|
---|
88 | if (!VBOX_SUCCESS(rc))
|
---|
89 | {
|
---|
90 | RTPrintf(TESTCASE ": error: failed to destroy vm! rc=%d\n", rc);
|
---|
91 | rcRet++;
|
---|
92 | }
|
---|
93 | }
|
---|
94 | else
|
---|
95 | {
|
---|
96 | RTPrintf(TESTCASE ": fatal error: failed to create vm! rc=%d\n", rc);
|
---|
97 | rcRet++;
|
---|
98 | }
|
---|
99 |
|
---|
100 | return rcRet;
|
---|
101 | }
|
---|