Last change
on this file since 38636 was 35346, checked in by vboxsync, 14 years ago |
VMM reorg: Moving the public include files from include/VBox to include/VBox/vmm.
|
-
Property svn:eol-style
set to
native
-
Property svn:keywords
set to
Id
|
File size:
1.4 KB
|
Line | |
---|
1 | /* $Id: tstAsmStructs.cpp 35346 2010-12-27 16:13:13Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * Testcase for checking offsets in the assembly structures shared with C/C++.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2006-2007 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 | * Header Files *
|
---|
20 | *******************************************************************************/
|
---|
21 | #include <VBox/vmm/cpum.h>
|
---|
22 | #include "CPUMInternal.h"
|
---|
23 | #include <VBox/vmm/trpm.h>
|
---|
24 | #include "TRPMInternal.h"
|
---|
25 | #include "HWACCMInternal.h"
|
---|
26 | #include "VMMSwitcher.h"
|
---|
27 | #include "VMMInternal.h"
|
---|
28 | #include <VBox/vmm/vm.h>
|
---|
29 |
|
---|
30 | #include "tstHelp.h"
|
---|
31 | #include <stdio.h>
|
---|
32 |
|
---|
33 |
|
---|
34 | int main()
|
---|
35 | {
|
---|
36 | int rc = 0;
|
---|
37 | printf("tstAsmStructs: TESTING\n");
|
---|
38 |
|
---|
39 | #ifdef IN_RING3
|
---|
40 | # include "tstAsmStructsHC.h"
|
---|
41 | #else
|
---|
42 | # include "tstAsmStructsRC.h"
|
---|
43 | #endif
|
---|
44 |
|
---|
45 | if (rc)
|
---|
46 | printf("tstAsmStructs: FAILURE - %d errors \n", rc);
|
---|
47 | else
|
---|
48 | printf("tstAsmStructs: SUCCESS\n");
|
---|
49 | return rc;
|
---|
50 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.