user32/tests: Use skip.

This commit is contained in:
Paul Vriens 2007-07-03 14:50:06 +02:00 committed by Alexandre Julliard
parent 918a2911bf
commit 24123e8603
1 changed files with 3 additions and 0 deletions

View File

@ -44,7 +44,10 @@ static void wsprintfWTest(void)
rc=wsprintfW(buf, fmt, -1);
if (rc==0 && GetLastError()==ERROR_CALL_NOT_IMPLEMENTED)
{
skip("wsprintfW is not implemented\n");
return;
}
ok(rc == 10, "wsPrintfW length failure: rc=%d error=%d\n",rc,GetLastError());
ok((lstrcmpW(buf, target) == 0),
"wsprintfW zero padded negative value failure\n");