Changeset 76958 in vbox for trunk/src/VBox/HostServices/GuestControl/testcase
- Timestamp:
- Jan 23, 2019 6:23:04 PM (6 years ago)
- Location:
- trunk/src/VBox
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox
- Property svn:mergeinfo
-
old new 8 8 /branches/VBox-5.0/src/VBox:104938,104943,104950,104987-104988,104990,106453 9 9 /branches/VBox-5.1/src/VBox:112367,116543,116550,116568,116573 10 /branches/VBox-5.2/src/VBox:119536,120083,120099,120213,120221,120239,123597-123598,123600-123601,123755,124263,124273,124277-124279,124284-124286,124288-124290,125768,125779-125780,125812 10 /branches/VBox-5.2/src/VBox:119536,120083,120099,120213,120221,120239,123597-123598,123600-123601,123755,124263,124273,124277-124279,124284-124286,124288-124290,125768,125779-125780,125812,127158-127159,127162-127167,127180 11 11 /branches/andy/draganddrop/src/VBox:90781-91268 12 12 /branches/andy/guestctrl20/src/VBox:78916,78930
-
- Property svn:mergeinfo
-
trunk/src/VBox/HostServices/GuestControl/testcase/tstGuestControlSvc.cpp
r76553 r76958 179 179 180 180 /** Client connected, invalid parameters given. */ 181 { HOST_ EXEC_CMD, 1024, 0, true, VERR_INVALID_POINTER },182 { HOST_ EXEC_CMD, 1, 0, true, VERR_INVALID_POINTER },183 { HOST_ EXEC_CMD, -1, 0, true, VERR_INVALID_POINTER },181 { HOST_MSG_EXEC_CMD, 1024, 0, true, VERR_INVALID_POINTER }, 182 { HOST_MSG_EXEC_CMD, 1, 0, true, VERR_INVALID_POINTER }, 183 { HOST_MSG_EXEC_CMD, -1, 0, true, VERR_INVALID_POINTER }, 184 184 185 185 /** Client connected, parameters given. */ 186 { HOST_ CANCEL_PENDING_WAITS, 1, &aParms[0], true, VINF_SUCCESS },187 { HOST_ EXEC_CMD, 1, &aParms[0], true, VINF_SUCCESS },188 { HOST_ EXEC_SET_INPUT, 1, &aParms[0], true, VINF_SUCCESS },189 { HOST_ EXEC_GET_OUTPUT, 1, &aParms[0], true, VINF_SUCCESS },186 { HOST_MSG_CANCEL_PENDING_WAITS, 1, &aParms[0], true, VINF_SUCCESS }, 187 { HOST_MSG_EXEC_CMD, 1, &aParms[0], true, VINF_SUCCESS }, 188 { HOST_MSG_EXEC_SET_INPUT, 1, &aParms[0], true, VINF_SUCCESS }, 189 { HOST_MSG_EXEC_GET_OUTPUT, 1, &aParms[0], true, VINF_SUCCESS }, 190 190 191 191 /** Client connected, unknown command + valid parameters given. */ … … 221 221 HGCMSvcSetStr(&aParmsHost[2], "baz"); 222 222 223 rc = pTable->pfnHostCall(pTable->pvService, HOST_ EXEC_CMD, 3, &aParmsHost[0]);223 rc = pTable->pfnHostCall(pTable->pvService, HOST_MSG_EXEC_CMD, 3, &aParmsHost[0]); 224 224 RTTEST_CHECK_RC_RET(g_hTest, rc, VINF_SUCCESS, rc); 225 225
Note:
See TracChangeset
for help on using the changeset viewer.