Changeset 22077 in vbox for trunk/src/VBox/HostDrivers/Support/testcase
- Timestamp:
- Aug 7, 2009 4:01:57 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 50824
- Location:
- trunk/src/VBox/HostDrivers/Support/testcase
- Files:
-
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/testcase/Makefile.kmk
-
Property svn:keywords
changed from
Id
toAuthor Date Id Revision
-
Property svn:keywords
changed from
-
trunk/src/VBox/HostDrivers/Support/testcase/SUPInstall.cpp
r20864 r22077 1 /* $Id$ */ 1 2 /** @file 2 * 3 * VBox host drivers - Ring-0 support drivers - Testcases: 4 * Testcase for driver install 3 * SUPInstall - Driver Install 5 4 */ 6 5 … … 37 36 #include <VBox/err.h> 38 37 #include <iprt/initterm.h> 39 #include <stdio.h> 38 #include <iprt/stream.h> 39 40 40 41 41 int main(int argc, char **argv) … … 45 45 if (RT_SUCCESS(rc)) 46 46 { 47 printf("installed successfully\n");47 RTPrintf("installed successfully\n"); 48 48 return 0; 49 49 } 50 printf("installation failed. rc=%d\n", rc); 51 50 RTPrintf("installation failed. rc=%Rrc\n", rc); 52 51 return 1; 53 52 } 53 -
trunk/src/VBox/HostDrivers/Support/testcase/SUPUninstall.cpp
r20864 r22077 1 /* $Id$ */ 1 2 /** @file 2 * 3 * VBox host drivers - Ring-0 support drivers - Testcases: 4 * Testcase for driver uninstall 3 * SUPUninstall - Driver Uninstall. 5 4 */ 6 5 … … 37 36 #include <VBox/err.h> 38 37 #include <iprt/initterm.h> 39 #include <stdio.h> 38 #include <iprt/stream.h> 39 40 40 41 41 int main(int argc, char **argv) … … 45 45 if (RT_SUCCESS(rc)) 46 46 { 47 printf("uninstalled successfully\n");47 RTPrintf("uninstalled successfully\n"); 48 48 return 0; 49 49 } 50 printf("uninstallation failed. rc=%d\n", rc); 51 50 RTPrintf("uninstallation failed. rc=%Rrc\n", rc); 52 51 return 1; 53 52 } 53 -
trunk/src/VBox/HostDrivers/Support/testcase/tstContiguous.cpp
r20864 r22077 1 1 /* $Id$ */ 2 2 /** @file 3 * VBox Support Driver - Contiguous Memory Testcase (ring-3).3 * SUP Testcase - Contiguous Memory Interface (ring-3). 4 4 */ 5 5 -
trunk/src/VBox/HostDrivers/Support/testcase/tstGIP-2.cpp
r20864 r22077 1 /* $Id$ */ 1 2 /** @file 2 * 3 * VBox host drivers - Ring-0 support drivers - Testcases: 4 * Test the Global Info Page interface 3 * SUP Testcase - Global Info Page interface (ring 3). 5 4 */ 6 5 -
trunk/src/VBox/HostDrivers/Support/testcase/tstGetPagingMode.cpp
r20864 r22077 1 /* $Id$ */ 1 2 /** @file 2 * 3 * VBox host drivers - Ring-0 support drivers - Testcases: 4 * Test the interface for querying host paging mode 3 * SUP Testcase - Host paging mode interface (ring 3). 5 4 */ 6 5 -
trunk/src/VBox/HostDrivers/Support/testcase/tstInit.cpp
r20864 r22077 1 /* $Id$ */ 1 2 /** @file 2 * 3 * VBox host drivers - Ring-0 support drivers - Testcases: 4 * Tests init and term of the support library 3 * SUP Testcase - Support Library initialization and termination. 5 4 */ 6 5 … … 54 53 return rc; 55 54 } 55 -
trunk/src/VBox/HostDrivers/Support/testcase/tstInt.cpp
r20864 r22077 1 /* *$Id$ */1 /* $Id$ */ 2 2 /** @file 3 * Testcase:Test the interrupt gate feature of the support library.3 * SUP Testcase - Test the interrupt gate feature of the support library. 4 4 */ 5 5 -
trunk/src/VBox/HostDrivers/Support/testcase/tstLow.cpp
r20864 r22077 1 /* $Id$ */ 1 2 /** @file 2 * 3 * VBox host drivers - Ring-0 support drivers - Testcases: 4 * Test allocating physical memory below 4G 3 * SUP Testcase - Low (<4GB) Memory Allocate interface (ring 3). 5 4 */ 6 5 … … 39 38 #include <iprt/initterm.h> 40 39 #include <iprt/stream.h> 40 #include <iprt/string.h> 41 41 42 #include <string.h>43 42 44 43 int main(int argc, char **argv) -
trunk/src/VBox/HostDrivers/Support/testcase/tstPin.cpp
r20864 r22077 1 /* $Id$ */ 1 2 /** @file 2 * 3 * VBox host drivers - Ring-0 support drivers - Testcases: 4 * Test the memory locking interface 3 * SUP Testcase - Memory locking interface (ring 3). 5 4 */ 6 5
Note:
See TracChangeset
for help on using the changeset viewer.