Changeset 52000 in vbox for trunk/src/VBox/HostDrivers/Support/testcase
- Timestamp:
- Jul 11, 2014 10:17:14 PM (11 years ago)
- svn:sync-xref-src-repo-rev:
- 94934
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/testcase/SUPInstall.cpp
r39091 r52000 45 45 if (RT_SUCCESS(rc)) 46 46 { 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); 48 55 return RTEXITCODE_SUCCESS; 49 56 }
Note:
See TracChangeset
for help on using the changeset viewer.