On 8/4/21 9:27 AM, Ziqing Hui wrote:
As an aside, I'd much prefer putting "todo_wine" before individual ok() calls over using block-todo_wine.
input_count = (test->max_inputs < 16 ? test->max_inputs : 16);
for (j = 0; j < input_count + off_limit_tests; ++j)
{
What is the meaning of the "off_limit_tests" variable? It's not obvious to me from the variable name.
It means the count of input index which is out of bound (index which is greater than, or equal to max_inputs).
Also, the bound can beinput_count.
Generally, this variable means the count of input index which is out of bound.
The bound can be max_inputs or input_count.