Module: wine Branch: master Commit: 2a809403d94450112b359d58e4cb49bf43051f5a URL: http://source.winehq.org/git/wine.git/?a=commit;h=2a809403d94450112b359d58e4...
Author: David Hedberg david.hedberg@gmail.com Date: Sun Jan 2 22:55:32 2011 +0100
shell32: Fix test error on certain w2k8 setups.
---
dlls/shell32/tests/ebrowser.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/dlls/shell32/tests/ebrowser.c b/dlls/shell32/tests/ebrowser.c index a221f97..6d9dbb1 100644 --- a/dlls/shell32/tests/ebrowser.c +++ b/dlls/shell32/tests/ebrowser.c @@ -1706,6 +1706,8 @@ static void test_InputObject(void) process_msgs(); hr = IInputObject_TranslateAcceleratorIO(pio, &msg_a); todo_wine ok(hr == (found ? S_OK : S_FALSE), "Got 0x%08x (%04x)\n", hr, i); + if(i == VK_F5) + Sleep(1000); /* Needed for w2k8 (64bit) */ }
process_msgs();