VirtualBox

Ignore:
Timestamp:
Nov 5, 2008 2:34:43 AM (16 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
38826
Message:

s/VBOX_SUCCESS/RT_SUCCESS/g s/VBOX_FAILURE/RT_FAILURE/g - VBOX_SUCCESS and VBOX_FAILURE have *NOT* been retired (because old habbits die hard) just sligtly deprecated.

Location:
trunk/src/VBox/HostDrivers/Support/testcase
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/HostDrivers/Support/testcase/SUPInstall.cpp

    r11822 r13835  
    4343    RTR3Init();
    4444    int rc = SUPInstall();
    45     if (VBOX_SUCCESS(rc))
     45    if (RT_SUCCESS(rc))
    4646    {
    4747        printf("installed successfully\n");
  • trunk/src/VBox/HostDrivers/Support/testcase/SUPUninstall.cpp

    r11822 r13835  
    4343    RTR3Init();
    4444    int rc = SUPUninstall();
    45     if (VBOX_SUCCESS(rc))
     45    if (RT_SUCCESS(rc))
    4646    {
    4747        printf("uninstalled successfully\n");
  • trunk/src/VBox/HostDrivers/Support/testcase/tstGIP-2.cpp

    r11794 r13835  
    106106    PSUPDRVSESSION pSession = NIL_RTR0PTR;
    107107    int rc = SUPR3Init(&pSession);
    108     if (VBOX_SUCCESS(rc))
     108    if (RT_SUCCESS(rc))
    109109    {
    110110        if (g_pSUPGlobalInfoPage)
  • trunk/src/VBox/HostDrivers/Support/testcase/tstGetPagingMode.cpp

    r11822 r13835  
    4545    RTR3Init();
    4646    rc = SUPR3Init(NULL);
    47     if (VBOX_SUCCESS(rc))
     47    if (RT_SUCCESS(rc))
    4848    {
    4949        SUPPAGINGMODE enmMode = SUPGetPagingMode();
     
    9595        RTPrintf("SUPR3Init -> rc=%Vrc\n", rc);
    9696
    97     return !VBOX_SUCCESS(rc);
     97    return !RT_SUCCESS(rc);
    9898}
    9999
  • trunk/src/VBox/HostDrivers/Support/testcase/tstInt.cpp

    r13830 r13835  
    104104            else
    105105                rc = VERR_NO_MEMORY;
    106             if (VBOX_SUCCESS(rc))
     106            if (RT_SUCCESS(rc))
    107107            {
    108108                pVM->pVMRC = 0;
  • trunk/src/VBox/HostDrivers/Support/testcase/tstLow.cpp

    r11822 r13835  
    5151
    5252    rc = SUPR3Init(NULL);
    53     if (VBOX_SUCCESS(rc))
     53    if (RT_SUCCESS(rc))
    5454    {
    5555        /*
     
    6060        memset(&aPages0[0], 0x8f, sizeof(aPages0));
    6161        rc = SUPLowAlloc(ELEMENTS(aPages0), &pvPages0, NULL, aPages0);
    62         if (VBOX_SUCCESS(rc))
     62        if (RT_SUCCESS(rc))
    6363        {
    6464            /* check that the pages are below 4GB and valid. */
     
    108108            memset(&aPages1[0], 0x8f, sizeof(aPages1));
    109109            rc = SUPLowAlloc(cPages, &pvPages1, NULL, aPages1);
    110             if (VBOX_SUCCESS(rc))
     110            if (RT_SUCCESS(rc))
    111111            {
    112112                /* check that the pages are below 4GB and valid. */
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette