VirtualBox

Changeset 97274 in vbox for trunk/src/VBox/HostServices


Ignore:
Timestamp:
Oct 24, 2022 8:34:59 AM (2 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
154262
Message:

Validation Kit/HGCM: Added initial GuestHost/HGCMMockUtils.h. See header for docs [build fix].

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/HostServices/SharedClipboard/testcase/tstClipboardMockHGCM.cpp

    r97272 r97274  
    108108    /** Clipboard-specific task data. */
    109109    CLIPBOARDTESTTASK Task;
     110    struct
     111    {
     112        /** The VbglR3 Shared Clipboard context to work on. */
     113        VBGLR3SHCLCMDCTX CmdCtx;
     114    } Guest;
    110115} CLIPBOARDTESTCTX;
    111116
     
    460465    }
    461466
    462     PVBGLR3SHCLCMDCTX pCmdCtx = &pCtx->HGCM.Guest.CmdCtx;
     467    PVBGLR3SHCLCMDCTX pCmdCtx = &pCtx->Guest.CmdCtx;
    463468
    464469    /* Do random chunked reads. */
     
    513518    RTThreadSleep(1000); /* Fudge; wait until the host has prepared the data for the clipboard. */
    514519
    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 
    520520    PCLIPBOARDTESTCTX  pTstCtx  = (PCLIPBOARDTESTCTX)pvCtx;
    521521    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
    522528    PCLIPBOARDTESTTASK pTstTask = (PCLIPBOARDTESTTASK)pCtx->Task.pvUser;
    523529    AssertPtr(pTstTask);
     
    527533    TstHGCMUtilsTaskSignal(&pCtx->Task, VINF_SUCCESS);
    528534
    529     RTTEST_CHECK_RC_OK(g_hTest, VbglR3ClipboardDisconnectEx(&pCtx->Guest.CmdCtx));
     535    RTTEST_CHECK_RC_OK(g_hTest, VbglR3ClipboardDisconnectEx(&pTstCtx->Guest.CmdCtx));
    530536
    531537    return VINF_SUCCESS;
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