Stop testing a sequence upon the first expected error, to avoid

spurious errors later on.
This commit is contained in:
Alexandre Julliard 2004-09-14 00:46:03 +00:00
parent b2499c9757
commit 9f53add86c
1 changed files with 2 additions and 2 deletions

View File

@ -850,9 +850,9 @@ static void ok_sequence(const struct message *expected, const char *context, int
todo_wine {
ok (FALSE, "%s: the msg 0x%04x was expected, but got msg 0x%04x instead\n",
context, expected->message, actual->message);
expected++;
actual++;
}
flush_sequence();
return;
}
else
{