You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, we use KTX_CHECK(testcase, (function() == 0), 0); when need to check is return value of function() not zero.
If we use KTX_CHECK like the above case, we can only get speculation result as 0 or 1, not the original return value of ``function()```.
So, we need some variant of KTX_CHECK/KTX_REQUIRE.
The text was updated successfully, but these errors were encountered:
Currently, we use
KTX_CHECK(testcase, (function() == 0), 0);
when need to check is return value offunction()
not zero.If we use KTX_CHECK like the above case, we can only get speculation result as 0 or 1, not the original return value of ``function()```.
So, we need some variant of KTX_CHECK/KTX_REQUIRE.
The text was updated successfully, but these errors were encountered: