match = memcmp(dst_8x1, td[i].image, sizeof(dst_8x1)) == 0;
if (!match)
todo_wine ok(match, "%d: data should match\n", i);
else ok(match, "%d: data should match\n", i);
This sort of thing makes me nervous. Couldn't you do this in such a way that we'll notice if the existing tests break, like adding a todo field to the structure?