Changeset 105352 in vbox for trunk/src/VBox/VMM/testcase
- Timestamp:
- Jul 16, 2024 11:21:19 AM (10 months ago)
- svn:sync-xref-src-repo-rev:
- 164005
- Location:
- trunk/src/VBox/VMM/testcase
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/testcase/tstAnimate.cpp
r99897 r105352 848 848 rc = VMR3ReqCallWaitU(pUVM, VMCPUID_ANY, (PFNRT)loadMem, 3, pVM, FileRawMem, &offRawMem); 849 849 else 850 rc = VMR3ReqCallWaitU(pUVM, VMCPUID_ANY, (PFNRT)SSMR3Load, 851 7,pVM, pszSavedState, (uintptr_t)NULL /*pStreamOps*/, (uintptr_t)NULL /*pvUser*/,850 rc = VMR3ReqCallWaitU(pUVM, VMCPUID_ANY, (PFNRT)SSMR3Load, 7, 851 pVM, pszSavedState, (uintptr_t)NULL /*pStreamOps*/, (uintptr_t)NULL /*pvUser*/, 852 852 SSMAFTER_DEBUG_IT, (uintptr_t)NULL /*pfnProgress*/, (uintptr_t)NULL /*pvProgressUser*/); 853 853 if (RT_SUCCESS(rc)) -
trunk/src/VBox/VMM/testcase/tstVMREQ.cpp
r105332 r105352 330 330 CHECK_ARG_EX(8, uArg8, a_Type); \ 331 331 return VINF_SUCCESS; \ 332 } \333 \ 334 \ 332 } 333 334 /* The max is now 9. See @bugref{10725}. 335 335 static DECLCALLBACK(int) a_BaseName##_10Args(a_Type uArg0, a_Type uArg1, a_Type uArg2, a_Type uArg3, a_Type uArg4, \ 336 336 a_Type uArg5, a_Type uArg6, a_Type uArg7, a_Type uArg8, a_Type uArg9) \ … … 458 458 CHECK_ARG_EX(14, uArg14, a_Type); \ 459 459 return VINF_SUCCESS; \ 460 } 460 } */ 461 461 462 462 #if ARCH_BITS == 64 … … 561 561 cCalled += 1; \ 562 562 RTTEST_CHECK(g_hTest, g_cCalled == cCalled); \ 563 \ 563 /* The max is now 9. See @bugref{10725}. 564 564 rc = VMR3ReqCallWaitU(pUVM, VMCPUID_ANY, (PFNRT)a_CallbackBaseName##_10Args, 10, \ 565 565 a_fnRandArg(a_Type, 0), a_fnRandArg(a_Type, 1), a_fnRandArg(a_Type, 2), a_fnRandArg(a_Type, 3), \ … … 611 611 RTTEST_CHECK_RC(g_hTest, rc, VINF_SUCCESS); \ 612 612 cCalled += 1; \ 613 RTTEST_CHECK(g_hTest, g_cCalled == cCalled) 613 RTTEST_CHECK(g_hTest, g_cCalled == cCalled) */ 614 614 615 615
Note:
See TracChangeset
for help on using the changeset viewer.