On Mon, Nov 09, 2020 at 03:07:17PM +0100, Sven Baars wrote:
{
todo_wine { ok(len > 0, "Test %d: got %d.\n", i, len); ok(abc.abcA + abc.abcB + abc.abcC <= len && abc.abcA + abc.abcB + abc.abcC > 0, "Test %d: expected %d >= %d > 0.\n", i, len, abc.abcA + abc.abcB + abc.abcC); ok(abc.abcB > 0, "Test %d: got %d.\n", i, abc.abcB);
} }
I haven't looked at this in any detail, but if your changes require adding todo_wine blocks that's going to require a lot of justification.
Huw.