VirtualBox

Ignore:
Timestamp:
Jul 11, 2014 10:17:14 PM (11 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
94934
Message:

SUPInstall should start the service too now. Cleaned up exit code handling and cured the annoying assertion if the driver is already installed.

File:
1 edited

Legend:

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

    r39091 r52000  
    4545    if (RT_SUCCESS(rc))
    4646    {
    47         RTMsgInfo("installed successfully");
     47        if (rc == VINF_SUCCESS)
     48            RTMsgInfo("Installed successfully!");
     49        else if (rc == VINF_ALREADY_INITIALIZED)
     50            RTMsgInfo("Already loaded.");
     51        else if (rc == VWRN_ALREADY_EXISTS)
     52            RTMsgInfo("Service already existed; started successfully.");
     53        else
     54            RTMsgInfo("Unexpected status: %Rrc", rc);
    4855        return RTEXITCODE_SUCCESS;
    4956    }
Note: See TracChangeset for help on using the changeset viewer.

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