Changeset 97274 in vbox for trunk/src/VBox/HostServices
- Timestamp:
- Oct 24, 2022 8:34:59 AM (2 years ago)
- svn:sync-xref-src-repo-rev:
- 154262
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/SharedClipboard/testcase/tstClipboardMockHGCM.cpp
r97272 r97274 108 108 /** Clipboard-specific task data. */ 109 109 CLIPBOARDTESTTASK Task; 110 struct 111 { 112 /** The VbglR3 Shared Clipboard context to work on. */ 113 VBGLR3SHCLCMDCTX CmdCtx; 114 } Guest; 110 115 } CLIPBOARDTESTCTX; 111 116 … … 460 465 } 461 466 462 PVBGLR3SHCLCMDCTX pCmdCtx = &pCtx-> HGCM.Guest.CmdCtx;467 PVBGLR3SHCLCMDCTX pCmdCtx = &pCtx->Guest.CmdCtx; 463 468 464 469 /* Do random chunked reads. */ … … 513 518 RTThreadSleep(1000); /* Fudge; wait until the host has prepared the data for the clipboard. */ 514 519 515 RT_ZERO(pCtx->Guest.CmdCtx);516 RTTEST_CHECK_RC_OK(g_hTest, VbglR3ClipboardConnectEx(&pCtx->Guest.CmdCtx, VBOX_SHCL_GF_0_CONTEXT_ID));517 518 RTThreadSleep(1000); /* Fudge; wait until the host has prepared the data for the clipboard. */519 520 520 PCLIPBOARDTESTCTX pTstCtx = (PCLIPBOARDTESTCTX)pvCtx; 521 521 AssertPtr(pTstCtx); 522 523 RT_ZERO(pTstCtx->Guest.CmdCtx); 524 RTTEST_CHECK_RC_OK(g_hTest, VbglR3ClipboardConnectEx(&pTstCtx->Guest.CmdCtx, VBOX_SHCL_GF_0_CONTEXT_ID)); 525 526 RTThreadSleep(1000); /* Fudge; wait until the host has prepared the data for the clipboard. */ 527 522 528 PCLIPBOARDTESTTASK pTstTask = (PCLIPBOARDTESTTASK)pCtx->Task.pvUser; 523 529 AssertPtr(pTstTask); … … 527 533 TstHGCMUtilsTaskSignal(&pCtx->Task, VINF_SUCCESS); 528 534 529 RTTEST_CHECK_RC_OK(g_hTest, VbglR3ClipboardDisconnectEx(&p Ctx->Guest.CmdCtx));535 RTTEST_CHECK_RC_OK(g_hTest, VbglR3ClipboardDisconnectEx(&pTstCtx->Guest.CmdCtx)); 530 536 531 537 return VINF_SUCCESS;
Note:
See TracChangeset
for help on using the changeset viewer.