Changeset 13835 in vbox for trunk/src/VBox/HostDrivers/Support/testcase
- Timestamp:
- Nov 5, 2008 2:34:43 AM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 38826
- Location:
- trunk/src/VBox/HostDrivers/Support/testcase
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/testcase/SUPInstall.cpp
r11822 r13835 43 43 RTR3Init(); 44 44 int rc = SUPInstall(); 45 if ( VBOX_SUCCESS(rc))45 if (RT_SUCCESS(rc)) 46 46 { 47 47 printf("installed successfully\n"); -
trunk/src/VBox/HostDrivers/Support/testcase/SUPUninstall.cpp
r11822 r13835 43 43 RTR3Init(); 44 44 int rc = SUPUninstall(); 45 if ( VBOX_SUCCESS(rc))45 if (RT_SUCCESS(rc)) 46 46 { 47 47 printf("uninstalled successfully\n"); -
trunk/src/VBox/HostDrivers/Support/testcase/tstGIP-2.cpp
r11794 r13835 106 106 PSUPDRVSESSION pSession = NIL_RTR0PTR; 107 107 int rc = SUPR3Init(&pSession); 108 if ( VBOX_SUCCESS(rc))108 if (RT_SUCCESS(rc)) 109 109 { 110 110 if (g_pSUPGlobalInfoPage) -
trunk/src/VBox/HostDrivers/Support/testcase/tstGetPagingMode.cpp
r11822 r13835 45 45 RTR3Init(); 46 46 rc = SUPR3Init(NULL); 47 if ( VBOX_SUCCESS(rc))47 if (RT_SUCCESS(rc)) 48 48 { 49 49 SUPPAGINGMODE enmMode = SUPGetPagingMode(); … … 95 95 RTPrintf("SUPR3Init -> rc=%Vrc\n", rc); 96 96 97 return ! VBOX_SUCCESS(rc);97 return !RT_SUCCESS(rc); 98 98 } 99 99 -
trunk/src/VBox/HostDrivers/Support/testcase/tstInt.cpp
r13830 r13835 104 104 else 105 105 rc = VERR_NO_MEMORY; 106 if ( VBOX_SUCCESS(rc))106 if (RT_SUCCESS(rc)) 107 107 { 108 108 pVM->pVMRC = 0; -
trunk/src/VBox/HostDrivers/Support/testcase/tstLow.cpp
r11822 r13835 51 51 52 52 rc = SUPR3Init(NULL); 53 if ( VBOX_SUCCESS(rc))53 if (RT_SUCCESS(rc)) 54 54 { 55 55 /* … … 60 60 memset(&aPages0[0], 0x8f, sizeof(aPages0)); 61 61 rc = SUPLowAlloc(ELEMENTS(aPages0), &pvPages0, NULL, aPages0); 62 if ( VBOX_SUCCESS(rc))62 if (RT_SUCCESS(rc)) 63 63 { 64 64 /* check that the pages are below 4GB and valid. */ … … 108 108 memset(&aPages1[0], 0x8f, sizeof(aPages1)); 109 109 rc = SUPLowAlloc(cPages, &pvPages1, NULL, aPages1); 110 if ( VBOX_SUCCESS(rc))110 if (RT_SUCCESS(rc)) 111 111 { 112 112 /* check that the pages are below 4GB and valid. */
Note:
See TracChangeset
for help on using the changeset viewer.