VirtualBox

source: vbox/trunk/src/VBox/VMM/testcase/tstVMM-HM.cpp@ 77807

Last change on this file since 77807 was 76553, checked in by vboxsync, 6 years ago

scm --update-copyright-year

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id Revision
File size: 3.7 KB
Line 
1/* $Id: tstVMM-HM.cpp 76553 2019-01-01 01:45:53Z vboxsync $ */
2/** @file
3 * VMM Testcase.
4 */
5
6/*
7 * Copyright (C) 2006-2019 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 <iprt/errcore.h>
26#include <VBox/log.h>
27#include <iprt/assert.h>
28#include <iprt/initterm.h>
29#include <iprt/semaphore.h>
30#include <iprt/stream.h>
31
32
33/*********************************************************************************************************************************
34* Defined Constants And Macros *
35*********************************************************************************************************************************/
36#define TESTCASE "tstVMM-Hm"
37
38VMMR3DECL(int) VMMDoHmTest(PVM pVM);
39
40
41#if 0
42static DECLCALLBACK(int) tstVmmHmConfigConstructor(PUVM pUVM, PVM pVM, void *pvUser)
43{
44 RT_NOREF2(pUVM, pvUser);
45
46 /*
47 * Get root node first.
48 * This is the only node in the tree.
49 */
50 PCFGMNODE pRoot = CFGMR3GetRoot(pVM);
51 int rc = CFGMR3InsertInteger(pRoot, "RamSize", 32*1024*1024);
52 AssertRC(rc);
53
54 /* rc = CFGMR3InsertInteger(pRoot, "EnableNestedPaging", false);
55 AssertRC(rc); */
56
57 PCFGMNODE pHWVirtExt;
58 rc = CFGMR3InsertNode(pRoot, "HWVirtExt", &pHWVirtExt);
59 AssertRC(rc);
60 rc = CFGMR3InsertInteger(pHWVirtExt, "Enabled", 1);
61 AssertRC(rc);
62
63 return VINF_SUCCESS;
64}
65#endif
66
67int main(int argc, char **argv)
68{
69 RTR3InitExe(argc, &argv, RTR3INIT_FLAGS_SUPLIB);
70
71 /*
72 * Doesn't work and I'm sick of rebooting the machine to try figure out
73 * what the heck is going wrong. (Linux sucks at this)
74 */
75 RTPrintf(TESTCASE ": This testcase hits a bunch of breakpoint assertions which\n"
76 TESTCASE ": causes kernel panics on linux regardless of what\n"
77 TESTCASE ": RTAssertDoBreakpoint returns. Only checked AMD-V on linux.\n");
78#if 1
79 /** @todo Make tstVMM-Hm to cause kernel panics. */
80 return 1;
81#else
82 int rcRet = 0; /* error count. */
83
84 /*
85 * Create empty VM.
86 */
87 RTPrintf(TESTCASE ": Initializing...\n");
88 PVM pVM;
89 PUVM pUVM;
90 int rc = VMR3Create(1, NULL, NULL, NULL, tstVmmHmConfigConstructor, NULL, &pVM, &pUVM);
91 if (RT_SUCCESS(rc))
92 {
93 /*
94 * Do testing.
95 */
96 RTPrintf(TESTCASE ": Testing...\n");
97 rc = VMR3ReqCallWaitU(pUVM, VMCPUID_ANY, (PFNRT)VMMDoHmTest, 1, pVM);
98 AssertRC(rc);
99
100 STAMR3Dump(pUVM, "*");
101
102 /*
103 * Cleanup.
104 */
105 rc = VMR3Destroy(pUVM);
106 if (RT_FAILURE(rc))
107 {
108 RTPrintf(TESTCASE ": error: failed to destroy vm! rc=%d\n", rc);
109 rcRet++;
110 }
111 VMR3ReleaseUVM(pUVM);
112 }
113 else
114 {
115 RTPrintf(TESTCASE ": fatal error: failed to create vm! rc=%d\n", rc);
116 rcRet++;
117 }
118
119 return rcRet;
120#endif
121}
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