Changeset 11822 in vbox for trunk/src/VBox/HostDrivers
- Timestamp:
- Aug 29, 2008 2:21:03 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 35653
- Location:
- trunk/src/VBox/HostDrivers/Support/testcase
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/testcase/SUPInstall.cpp
r8155 r11822 41 41 int main(int argc, char **argv) 42 42 { 43 RTR3Init( false);43 RTR3Init(); 44 44 int rc = SUPInstall(); 45 45 if (VBOX_SUCCESS(rc)) -
trunk/src/VBox/HostDrivers/Support/testcase/SUPUninstall.cpp
r8155 r11822 41 41 int main(int argc, char **argv) 42 42 { 43 RTR3Init( false);43 RTR3Init(); 44 44 int rc = SUPUninstall(); 45 45 if (VBOX_SUCCESS(rc)) -
trunk/src/VBox/HostDrivers/Support/testcase/tstContiguous.cpp
r11794 r11822 46 46 int rcRet = 0; 47 47 48 RTR3Init( false);48 RTR3Init(); 49 49 rc = SUPR3Init(NULL); 50 50 RTPrintf("tstContiguous: SUPR3Init -> rc=%Vrc\n", rc); -
trunk/src/VBox/HostDrivers/Support/testcase/tstGetPagingMode.cpp
r11794 r11822 43 43 { 44 44 int rc; 45 RTR3Init( false);45 RTR3Init(); 46 46 rc = SUPR3Init(NULL); 47 47 if (VBOX_SUCCESS(rc)) -
trunk/src/VBox/HostDrivers/Support/testcase/tstInit.cpp
r11794 r11822 43 43 { 44 44 int rc; 45 RTR3Init( false);45 RTR3Init(); 46 46 rc = SUPR3Init(NULL); 47 47 RTPrintf("tstInit: SUPR3Init -> rc=%d\n", rc); -
trunk/src/VBox/HostDrivers/Support/testcase/tstLow.cpp
r11794 r11822 47 47 int rcRet = 0; 48 48 49 RTR3Init( false);49 RTR3Init(); 50 50 RTPrintf("tstLow: TESTING...\n"); 51 51 -
trunk/src/VBox/HostDrivers/Support/testcase/tstPage.cpp
r11794 r11822 45 45 int cErrors = 0; 46 46 int rc = 0; 47 RTR3Init (true, _1M*168);47 RTR3InitAndSUPLib(); 48 48 rc = SUPR3Init(NULL); 49 49 cErrors += rc != 0; -
trunk/src/VBox/HostDrivers/Support/testcase/tstPin.cpp
r11794 r11822 48 48 RTHCPHYS HCPhys; 49 49 50 RTR3Init (true, ~0);50 RTR3InitAndSUPLib(); 51 51 rc = SUPR3Init(NULL); 52 52 RTPrintf("SUPR3Init -> rc=%d\n", rc);
Note:
See TracChangeset
for help on using the changeset viewer.