Re: gdi32: Add a buch of CreateScalableFontResource() tests. Resend.

2011-08-05 Thread Dmitry Timoshkov
Dmitry Timoshkov wrote: > Dmitry Timoshkov wrote: > > > Alexandre Julliard wrote: > > > > > > + > > > > +/* @makedep: wine_test.ttf */ > > > > +wine_test.ttf RCDATA wine_test.ttf > > > > > > How was this file created? > > > > It was created with fontforge. Here it is in a .sfd format just i

Re: [PATCH 1/3] ntdll: NtCancelIoFile(Ex) enters a nonaleratable wait state instead of an alertable one, this allows system apcs to run but blocks user apcs

2011-08-05 Thread Bernhard Loos
On Fri, Aug 5, 2011 at 4:34 PM, Alexandre Julliard wrote: > Bernhard Loos writes: > >> --- >>  dlls/ntdll/file.c       |    4 ++-- >>  dlls/ntdll/tests/file.c |    8 >>  2 files changed, 6 insertions(+), 6 deletions(-) > > The whole point of the wait is to run user APCs... > > -- > Alexa

Re: [PATCH] kernel32: Create(Named)Pipe uses an nonalertable io mode

2011-08-05 Thread Bernhard Loos
On Fri, Aug 5, 2011 at 3:34 PM, Alexandre Julliard wrote: > Bernhard Loos writes: > >> @@ -37,7 +37,11 @@ >>  static HANDLE alarm_event; >>  static BOOL (WINAPI *pDuplicateTokenEx)(HANDLE,DWORD,LPSECURITY_ATTRIBUTES, >>                                           >> SECURITY_IMPERSONATION_LEVEL,TOK

Re: configure: Disable gstreamer support if headers are not compatible with build environment. (try 2)

2011-08-05 Thread Alex Villací­s Lasso
El 02/08/11 17:38, Octavian Voicu escribió: When building a 32-bit wine in a 64-bit build environment with default glib headers (gstreamer uses glib.h), glib 64-bit types (such as gint64 and guint64) are not properly defined, causing many compiler warnings and most likely a broken winegstreamer.d

Re: [2/2] user32: When destroying a window, preserve the first WM_QUIT message that was posted to it.

2011-08-05 Thread Marvin
Hi, While running your changed tests on Windows, I think I found new failures. Being a bot and all I'm not very good at pattern recognition, so I might be wrong, but could you please double-check? Full results can be found at http://testbot.winehq.org/JobDetails.pl?Key=13345 Your paranoid android

Re: [1/2] user32/tests: Test what happens to a WM_QUIT posted to a window that gets destroyed.

2011-08-05 Thread Marvin
Hi, While running your changed tests on Windows, I think I found new failures. Being a bot and all I'm not very good at pattern recognition, so I might be wrong, but could you please double-check? Full results can be found at http://testbot.winehq.org/JobDetails.pl?Key=13344 Your paranoid android

Re: GSoC: dinput8 Action Mapping - dialog testing

2011-08-05 Thread Lucas Zawacki
> Is it your own dialog you are testing or a built-in? It's the dialog I created for IDirectInput::ConfigureDevices. I'll give a look in your tests and ask if I need help. Thanks

Vacation

2011-08-05 Thread Alexandre Julliard
Folks, There won't be any commits for a while, since I'll be on vacation for the next two weeks. Also release 1.3.27 will be 3 weeks from now instead of 2. I hope you can all survive the commit withdrawal... -- Alexandre Julliard julli...@winehq.org

Re: GSoC-2011: Implement Missing Mesh Functions in Wine’s D3DX9

2011-08-05 Thread Stefan Dösinger
Hi, A few more thinks I noticed: On Thursday 04 August 2011 11:21:22 Michael Mc Donnell wrote: > +#include In other libs this is guarded with #ifdef HAVE_FLOAT_H - not sure if there are any systems that don't have the header and the rest of the code still compiles, but I recommend to use the s

Re: GSoC: dinput8 Action Mapping - dialog testing

2011-08-05 Thread Michael Mc Donnell
On Fri, Aug 5, 2011 at 2:45 PM, Marcus Meissner wrote: > On Tue, Aug 02, 2011 at 06:25:49PM -0300, Lucas Zawacki wrote: >> Hello. I need some help here. >> >> Before commiting the ConfigureDevices patches tried to add a couple >> simple tests for the function, the problem is that I now have to tes

Re: kernel32: Implement K32GetProcessImageFileNameA().

2011-08-05 Thread Francois Gouget
On Fri, 5 Aug 2011, Marvin wrote: [...] > Full results can be found at > http://testbot.winehq.org/JobDetails.pl?Key=13315 [...] > === WVISTAADM (32 bit psapi_main) === > psapi_main.c:110: Test failed: cbNeeded=100 This got me looking into this test. It's a test of EnumProcessModules(). It's supp

Re: [PATCH 1/3] ntdll: NtCancelIoFile(Ex) enters a nonaleratable wait state instead of an alertable one, this allows system apcs to run but blocks user apcs

2011-08-05 Thread Alexandre Julliard
Bernhard Loos writes: > Well, windows doesn't run user apcs at this point, as the tests show. > I'm not completly sure, if the wait the nonalertable wait is needed to > run system io apc of the cancelled operation, but an alertable wait > seems to be wrong. There's no need for a wait to run syst

Re: [PATCH] kernel32: Create(Named)Pipe uses an nonalertable io mode

2011-08-05 Thread Alexandre Julliard
Bernhard Loos writes: > It does check it. If the apc got called during an io operation, the > operation will fail with ERROR_OPERATION_ABORTED/STATUS_CANCELLED. So > if it the operation succeeds with an apc scheduled, the pipe was > opened with an nonalerable io mode. That's not a very good che

Re: [PATCH 1/3] ntdll: NtCancelIoFile(Ex) enters a nonaleratable wait state instead of an alertable one, this allows system apcs to run but blocks user apcs

2011-08-05 Thread Alexandre Julliard
Bernhard Loos writes: > --- > dlls/ntdll/file.c |4 ++-- > dlls/ntdll/tests/file.c |8 > 2 files changed, 6 insertions(+), 6 deletions(-) The whole point of the wait is to run user APCs... -- Alexandre Julliard julli...@winehq.org

Re: [PATCH] kernel32: Create(Named)Pipe uses an nonalertable io mode

2011-08-05 Thread Alexandre Julliard
Bernhard Loos writes: > @@ -37,7 +37,11 @@ > static HANDLE alarm_event; > static BOOL (WINAPI *pDuplicateTokenEx)(HANDLE,DWORD,LPSECURITY_ATTRIBUTES, > > SECURITY_IMPERSONATION_LEVEL,TOKEN_TYPE,PHANDLE); > +static DWORD WINAPI (*pQueueUserAPC)(PAPCFUNC

GSoC: dinput8 Action Mapping - dialog testing

2011-08-05 Thread Marcus Meissner
On Tue, Aug 02, 2011 at 06:25:49PM -0300, Lucas Zawacki wrote: > Hello. I need some help here. > > Before commiting the ConfigureDevices patches tried to add a couple > simple tests for the function, the problem is that I now have to test > a dialog. What is the best way to do it? I'm thinking of

Re: [PATCH 1/2] wscript: skip some tests on wow64 (resend)

2011-08-05 Thread Alexandre Julliard
Michał Ziętek writes: > I skipped them because of filesystem redirection on wow64 which makes > GetSystemDirectory and SearchPath return the wrong values. > How can I solve this problem? Getting rid of SearchPath would be a good first step. It's probably in always in the system directory anyway.

Re: ieframe: Moved intshcut.c tests to ieframe

2011-08-05 Thread Marvin
Hi, While running your changed tests on Windows, I think I found new failures. Being a bot and all I'm not very good at pattern recognition, so I might be wrong, but could you please double-check? Full results can be found at http://testbot.winehq.org/JobDetails.pl?Key=13201 Your paranoid android

Re: [PATCH 1/2] wscript: skip some tests on wow64 (resend)

2011-08-05 Thread Michał Ziętek
I skipped them because of filesystem redirection on wow64 which makes GetSystemDirectory and SearchPath return the wrong values. How can I solve this problem?

Re: kernel32: Implement K32GetProcessImageFileNameA().

2011-08-05 Thread Francois Gouget
On Fri, 5 Aug 2011, Marvin wrote: [...] > === WVISTAADM (32 bit psapi_main) === > psapi_main.c:110: Test failed: cbNeeded=100 > > === W2K8SE (32 bit psapi_main) === > psapi_main.c:110: Test failed: cbNeeded=100 > > === W7PRO (32 bit psapi_main) === > psapi_main.c:110: Test failed: cbNeeded=96 >

Re: kernel32: Implement K32GetProcessImageFileNameA().

2011-08-05 Thread Marvin
Hi, While running your changed tests on Windows, I think I found new failures. Being a bot and all I'm not very good at pattern recognition, so I might be wrong, but could you please double-check? Full results can be found at http://testbot.winehq.org/JobDetails.pl?Key=13315 Your paranoid android

Re: [PATCH 1/2] wscript: skip some tests on wow64 (resend)

2011-08-05 Thread Alexandre Julliard
Michał Ziętek writes: > changed message Please fix the test instead of skipping it. -- Alexandre Julliard julli...@winehq.org