1 | /* $Id: tstVBoxDbg.cpp 33540 2010-10-28 09:27:05Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * VBox Debugger GUI, dummy testcase.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2006-2010 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/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 | RTR3InitAndSUPLib();
|
---|
42 | RTPrintf(TESTCASE ": TESTING...\n");
|
---|
43 |
|
---|
44 | /*
|
---|
45 | * Create empty VM.
|
---|
46 | */
|
---|
47 | PVM pVM;
|
---|
48 | int rc = VMR3Create(1, NULL, NULL, NULL, NULL, NULL, &pVM);
|
---|
49 | if (RT_SUCCESS(rc))
|
---|
50 | {
|
---|
51 | /*
|
---|
52 | * Instantiate the debugger GUI bits and run them.
|
---|
53 | */
|
---|
54 | QApplication App(argc, argv);
|
---|
55 | PDBGGUI pGui;
|
---|
56 | PCDBGGUIVT pGuiVT;
|
---|
57 | rc = DBGGuiCreateForVM(pVM, &pGui, &pGuiVT);
|
---|
58 | if (RT_SUCCESS(rc))
|
---|
59 | {
|
---|
60 | if (argc <= 1 || argc == 2)
|
---|
61 | {
|
---|
62 | RTPrintf(TESTCASE ": calling pfnShowCommandLine...\n");
|
---|
63 | rc = pGuiVT->pfnShowCommandLine(pGui);
|
---|
64 | if (RT_FAILURE(rc))
|
---|
65 | {
|
---|
66 | RTPrintf(TESTCASE ": error: pfnShowCommandLine failed! rc=%Rrc\n", rc);
|
---|
67 | cErrors++;
|
---|
68 | }
|
---|
69 | }
|
---|
70 |
|
---|
71 | if (argc <= 1 || argc == 3)
|
---|
72 | {
|
---|
73 | RTPrintf(TESTCASE ": calling pfnShowStatistics...\n");
|
---|
74 | pGuiVT->pfnShowStatistics(pGui);
|
---|
75 | if (RT_FAILURE(rc))
|
---|
76 | {
|
---|
77 | RTPrintf(TESTCASE ": error: pfnShowStatistics failed! rc=%Rrc\n", rc);
|
---|
78 | cErrors++;
|
---|
79 | }
|
---|
80 | }
|
---|
81 |
|
---|
82 | pGuiVT->pfnAdjustRelativePos(pGui, 0, 0, 640, 480);
|
---|
83 | RTPrintf(TESTCASE ": calling App.exec()...\n");
|
---|
84 | App.exec();
|
---|
85 | }
|
---|
86 | else
|
---|
87 | {
|
---|
88 | RTPrintf(TESTCASE ": error: DBGGuiCreateForVM failed! rc=%Rrc\n", rc);
|
---|
89 | cErrors++;
|
---|
90 | }
|
---|
91 |
|
---|
92 | /*
|
---|
93 | * Cleanup.
|
---|
94 | */
|
---|
95 | rc = VMR3Destroy(pVM);
|
---|
96 | if (!RT_SUCCESS(rc))
|
---|
97 | {
|
---|
98 | RTPrintf(TESTCASE ": error: failed to destroy vm! rc=%Rrc\n", rc);
|
---|
99 | cErrors++;
|
---|
100 | }
|
---|
101 | }
|
---|
102 | else
|
---|
103 | {
|
---|
104 | RTPrintf(TESTCASE ": fatal error: failed to create vm! rc=%Rrc\n", rc);
|
---|
105 | cErrors++;
|
---|
106 | }
|
---|
107 |
|
---|
108 | /*
|
---|
109 | * Summary and exit.
|
---|
110 | */
|
---|
111 | if (!cErrors)
|
---|
112 | RTPrintf(TESTCASE ": SUCCESS\n");
|
---|
113 | else
|
---|
114 | RTPrintf(TESTCASE ": FAILURE - %d errors\n", cErrors);
|
---|
115 | return !!cErrors;
|
---|
116 | }
|
---|
117 |
|
---|