summaryrefslogtreecommitdiff
path: root/src/VBox/VMM/testcase/tstMMHyperHeap.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/VBox/VMM/testcase/tstMMHyperHeap.cpp')
-rw-r--r--src/VBox/VMM/testcase/tstMMHyperHeap.cpp9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/VBox/VMM/testcase/tstMMHyperHeap.cpp b/src/VBox/VMM/testcase/tstMMHyperHeap.cpp
index d4366be2..9dad3590 100644
--- a/src/VBox/VMM/testcase/tstMMHyperHeap.cpp
+++ b/src/VBox/VMM/testcase/tstMMHyperHeap.cpp
@@ -4,7 +4,7 @@
*/
/*
- * Copyright (C) 2006-2007 Oracle Corporation
+ * Copyright (C) 2006-2012 Oracle Corporation
*
* This file is part of VirtualBox Open Source Edition (OSE), as
* available from http://www.virtualbox.org. This file is free software;
@@ -85,6 +85,13 @@ int main(int argc, char **argv)
return 1;
}
+ rc = CFGMR3Init(pVM, NULL, NULL);
+ if (RT_FAILURE(rc))
+ {
+ RTPrintf("FAILURE: CFGMR3Init failed. rc=%Rrc\n", rc);
+ return 1;
+ }
+
rc = MMR3Init(pVM);
if (RT_FAILURE(rc))
{