From ebbc1e781cff5ace08dc9df1d8642e038ff6937b Mon Sep 17 00:00:00 2001 From: Stefan Leichter Date: Thu, 21 Feb 2008 20:19:43 +0100 Subject: [PATCH] user32: Fix a test of GetMouseMovePointsEx failing on platforms winxp and win2k3. --- dlls/user32/tests/input.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/user32/tests/input.c b/dlls/user32/tests/input.c index c1159073d84..cf7602dd483 100644 --- a/dlls/user32/tests/input.c +++ b/dlls/user32/tests/input.c @@ -768,7 +768,7 @@ static void test_GetMouseMovePointsEx(void) count = BUFLIM; retval = pGetMouseMovePointsEx(sizeof(MOUSEMOVEPOINT), &in, out, count, GMMP_USE_DISPLAY_POINTS); todo_wine { - ok(retval == count, "expected GetMouseMovePointsEx to succeed, got %d\n", retval); + ok(retval <= count, "expected GetMouseMovePointsEx to succeed, got %d\n", retval); ok(MYERROR == GetLastError(), "expected error %d, got %u\n", MYERROR, GetLastError()); }