[3] | 1 | /* $Id: tstVBoxDbg.cpp 3 2015-07-31 15:39:00Z dmik $ */
|
---|
| 2 | /** @file
|
---|
| 3 | * VBox Debugger GUI, dummy testcase.
|
---|
| 4 | */
|
---|
| 5 |
|
---|
| 6 | /*
|
---|
| 7 | * Copyright (C) 2006-2015 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 <qapplication.h>
|
---|
| 23 | #include <VBox/dbggui.h>
|
---|
| 24 | #include <VBox/vmm/vm.h>
|
---|
| 25 | #include <VBox/err.h>
|
---|
| 26 | #include <iprt/initterm.h>
|
---|
| 27 | #include <VBox/log.h>
|
---|
| 28 | #include <iprt/assert.h>
|
---|
| 29 | #include <iprt/initterm.h>
|
---|
| 30 | #include <iprt/semaphore.h>
|
---|
| 31 | #include <iprt/stream.h>
|
---|
| 32 |
|
---|
| 33 |
|
---|
| 34 | #define TESTCASE "tstVBoxDbg"
|
---|
| 35 |
|
---|
| 36 |
|
---|
| 37 | int main(int argc, char **argv)
|
---|
| 38 | {
|
---|
| 39 | int cErrors = 0; /* error count. */
|
---|
| 40 |
|
---|
| 41 | RTR3InitExe(argc, &argv, RTR3INIT_FLAGS_SUPLIB);
|
---|
| 42 | RTPrintf(TESTCASE ": TESTING...\n");
|
---|
| 43 |
|
---|
| 44 | /*
|
---|
| 45 | * Create empty VM.
|
---|
| 46 | */
|
---|
| 47 | PVM pVM;
|
---|
| 48 | PUVM pUVM;
|
---|
| 49 | int rc = VMR3Create(1, NULL, NULL, NULL, NULL, NULL, &pVM, &pUVM);
|
---|
| 50 | if (RT_SUCCESS(rc))
|
---|
| 51 | {
|
---|
| 52 | /*
|
---|
| 53 | * Instantiate the debugger GUI bits and run them.
|
---|
| 54 | */
|
---|
| 55 | QApplication App(argc, argv);
|
---|
| 56 | PDBGGUI pGui;
|
---|
| 57 | PCDBGGUIVT pGuiVT;
|
---|
| 58 | rc = DBGGuiCreateForVM(pUVM, &pGui, &pGuiVT);
|
---|
| 59 | if (RT_SUCCESS(rc))
|
---|
| 60 | {
|
---|
| 61 | if (argc <= 1 || argc == 2)
|
---|
| 62 | {
|
---|
| 63 | RTPrintf(TESTCASE ": calling pfnShowCommandLine...\n");
|
---|
| 64 | rc = pGuiVT->pfnShowCommandLine(pGui);
|
---|
| 65 | if (RT_FAILURE(rc))
|
---|
| 66 | {
|
---|
| 67 | RTPrintf(TESTCASE ": error: pfnShowCommandLine failed! rc=%Rrc\n", rc);
|
---|
| 68 | cErrors++;
|
---|
| 69 | }
|
---|
| 70 | }
|
---|
| 71 |
|
---|
| 72 | if (argc <= 1 || argc == 3)
|
---|
| 73 | {
|
---|
| 74 | RTPrintf(TESTCASE ": calling pfnShowStatistics...\n");
|
---|
| 75 | pGuiVT->pfnShowStatistics(pGui);
|
---|
| 76 | if (RT_FAILURE(rc))
|
---|
| 77 | {
|
---|
| 78 | RTPrintf(TESTCASE ": error: pfnShowStatistics failed! rc=%Rrc\n", rc);
|
---|
| 79 | cErrors++;
|
---|
| 80 | }
|
---|
| 81 | }
|
---|
| 82 |
|
---|
| 83 | pGuiVT->pfnAdjustRelativePos(pGui, 0, 0, 640, 480);
|
---|
| 84 | RTPrintf(TESTCASE ": calling App.exec()...\n");
|
---|
| 85 | App.exec();
|
---|
| 86 | }
|
---|
| 87 | else
|
---|
| 88 | {
|
---|
| 89 | RTPrintf(TESTCASE ": error: DBGGuiCreateForVM failed! rc=%Rrc\n", rc);
|
---|
| 90 | cErrors++;
|
---|
| 91 | }
|
---|
| 92 |
|
---|
| 93 | /*
|
---|
| 94 | * Cleanup.
|
---|
| 95 | */
|
---|
| 96 | rc = VMR3Destroy(pUVM);
|
---|
| 97 | if (!RT_SUCCESS(rc))
|
---|
| 98 | {
|
---|
| 99 | RTPrintf(TESTCASE ": error: failed to destroy vm! rc=%Rrc\n", rc);
|
---|
| 100 | cErrors++;
|
---|
| 101 | }
|
---|
| 102 | VMR3ReleaseUVM(pUVM);
|
---|
| 103 | }
|
---|
| 104 | else
|
---|
| 105 | {
|
---|
| 106 | RTPrintf(TESTCASE ": fatal error: failed to create vm! rc=%Rrc\n", rc);
|
---|
| 107 | cErrors++;
|
---|
| 108 | }
|
---|
| 109 |
|
---|
| 110 | /*
|
---|
| 111 | * Summary and exit.
|
---|
| 112 | */
|
---|
| 113 | if (!cErrors)
|
---|
| 114 | RTPrintf(TESTCASE ": SUCCESS\n");
|
---|
| 115 | else
|
---|
| 116 | RTPrintf(TESTCASE ": FAILURE - %d errors\n", cErrors);
|
---|
| 117 | return !!cErrors;
|
---|
| 118 | }
|
---|
| 119 |
|
---|