Hi Frédéric,
On 6/13/11 10:19 PM, Frédéric Delanoy wrote:
}else if(err) {
if (!is_todo_wine)
ok(0, "unexpected char 0x%x position %d in line %d (got '%.*s', wanted '%.*s')\n",
*err, (int)(err-out_ptr), line, (int)(out_nl-out_ptr),
out_ptr, (int)(exp_nl-exp_ptr), exp_ptr);
else
todo_wine
ok(0, "unexpected char 0x%x position %d in line %d (got '%.*s', wanted '%.*s')\n",
*err, (int)(err-out_ptr), line, (int)(out_nl-out_ptr), out_ptr,
(int)(exp_nl-exp_ptr-sizeof(todo_wine_cmd)), exp_ptr+sizeof(todo_wine_cmd));
You may change tests to ok(!err, ....) here and make this else unconditional to avoid having ok(TRUE, ...) tests later.
Jacek