1 | /* $Id: tstVMM.cpp 23 2007-01-15 14:08:28Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * VMM Testcase.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2006 InnoTek Systemberatung 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 as published by the Free Software Foundation,
|
---|
13 | * in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
|
---|
14 | * distribution. VirtualBox OSE is distributed in the hope that it will
|
---|
15 | * be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | *
|
---|
17 | * If you received this file as part of a commercial VirtualBox
|
---|
18 | * distribution, then only the terms of your commercial VirtualBox
|
---|
19 | * license agreement apply instead of the previous paragraph.
|
---|
20 | */
|
---|
21 |
|
---|
22 |
|
---|
23 | /*******************************************************************************
|
---|
24 | * Header Files *
|
---|
25 | *******************************************************************************/
|
---|
26 | #include <VBox/vm.h>
|
---|
27 | #include <VBox/vmm.h>
|
---|
28 | #include <VBox/cpum.h>
|
---|
29 | #include <VBox/err.h>
|
---|
30 | #include <VBox/log.h>
|
---|
31 | #include <iprt/assert.h>
|
---|
32 | #include <iprt/runtime.h>
|
---|
33 | #include <iprt/semaphore.h>
|
---|
34 | #include <iprt/stream.h>
|
---|
35 |
|
---|
36 |
|
---|
37 | /*******************************************************************************
|
---|
38 | * Defined Constants And Macros *
|
---|
39 | *******************************************************************************/
|
---|
40 | #define TESTCASE "tstVMM"
|
---|
41 |
|
---|
42 | VMMR3DECL(int) VMMDoTest(PVM pVM);
|
---|
43 |
|
---|
44 |
|
---|
45 | int main(int argc, char **argv)
|
---|
46 | {
|
---|
47 | int rcRet = 0; /* error count. */
|
---|
48 |
|
---|
49 | RTR3Init();
|
---|
50 |
|
---|
51 | /*
|
---|
52 | * Create empty VM.
|
---|
53 | */
|
---|
54 | RTPrintf(TESTCASE ": Initializing...\n");
|
---|
55 | PVM pVM;
|
---|
56 | int rc = VMR3Create(NULL, NULL, NULL, NULL, &pVM);
|
---|
57 | if (VBOX_SUCCESS(rc))
|
---|
58 | {
|
---|
59 | /*
|
---|
60 | * Do testing.
|
---|
61 | */
|
---|
62 | RTPrintf(TESTCASE ": Testing...\n");
|
---|
63 | PVMREQ pReq1 = NULL;
|
---|
64 | rc = VMR3ReqCall(pVM, &pReq1, RT_INDEFINITE_WAIT, (PFNRT)VMMDoTest, 1, pVM);
|
---|
65 | AssertRC(rc);
|
---|
66 | VMR3ReqFree(pReq1);
|
---|
67 |
|
---|
68 | STAMR3Dump(pVM, "*");
|
---|
69 |
|
---|
70 | /*
|
---|
71 | * Cleanup.
|
---|
72 | */
|
---|
73 | rc = VMR3Destroy(pVM);
|
---|
74 | if (!VBOX_SUCCESS(rc))
|
---|
75 | {
|
---|
76 | RTPrintf(TESTCASE ": error: failed to destroy vm! rc=%d\n", rc);
|
---|
77 | rcRet++;
|
---|
78 | }
|
---|
79 | }
|
---|
80 | else
|
---|
81 | {
|
---|
82 | RTPrintf(TESTCASE ": fatal error: failed to create vm! rc=%d\n", rc);
|
---|
83 | rcRet++;
|
---|
84 | }
|
---|
85 |
|
---|
86 | return rcRet;
|
---|
87 | }
|
---|