Re: [3/8] winemenubuilder/tests: Added tests for XDG files

2012-09-19 Thread Per Johansson
19 sep 2012 kl. 23:52 skrev 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.wine

Overriding the check for ownership of a prefix

2012-09-19 Thread Scott Ritchie
So, I believe I have a legitimate use case for ignoring this, and want to know what sort of patch would go forward. Imagine a distro package containing a Windows game in the form of a read-only copy of an installed prefix (into, say, /opt). When the user launches the app (via desktop file) t

Re: shell32: Add tests for ShellExecute()'s handling of file URLs. (try2)

2012-09-19 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=21655 Your paranoid android

Re: [7/8] winemenubuilder: Use a dispatch table to access XDG specific parts, extracted to different file.

2012-09-19 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=21662 Your paranoid android

Re: [8/8] winemenubuilder: Implement OS X application bundles. (try 2)

2012-09-19 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=21663 Your paranoid android

Re: [3/8] winemenubuilder/tests: Added tests for XDG files

2012-09-19 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=21661 Your paranoid android

Re: [3/8] winemenubuilder/tests: Added tests for XDG files

2012-09-19 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=21661 Your paranoid android

Re: [3/8] winemenubuilder/tests: Added tests for XDG files

2012-09-19 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=21661 Your paranoid android

Re: [3/8] winemenubuilder/tests: Added tests for XDG files

2012-09-19 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=21661 Your paranoid android

Re: shell32: Add tests for ShellExecute()'s handling of file URLs.

2012-09-19 Thread Juan Lang
Hi Francois, pretty sure you didn't mean to leave this hunk in: @@ -2296,9 +2406,13 @@ START_TEST(shlexec) init_test(); +#if 0 test_argify(); test_lpFile_parsed(); test_filename(); +#endif +test_fileurl(); +#if 0 test_find_executable(); test_lnks(); test_ex

Re: shell32: Add tests for ShellExecute()'s handling of file URLs.

2012-09-19 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=21649 Your paranoid android

Re: [PATCH 1/2] user32/tests: Add tests for class small icons (try 3).

2012-09-19 Thread Alexandre Julliard
Sergey Guralnik writes: > +todo_wine > +ok( hsmicon != NULL, "GetClassLong should return non-zero handle\n"); > +for(i = 0; i < 100; i++) > +if(hsmicon != (HICON)GetClassLongPtrW(hwnd, GCLP_HICONSM)) > +{ > +ok(FALSE, "Always should return the same icon handle\

Re: [1/2] scrrun: Moved creating filesystem object to its own function

2012-09-19 Thread Alexandre Julliard
Alistair Leslie-Hughes writes: > @@ -194,13 +245,33 @@ HRESULT WINAPI DllUnregisterServer(void) > > HRESULT WINAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID* ppv) > { > +scrruncf *This; > +HRESULT hr = CLASS_E_CLASSNOTAVAILABLE; > + > +TRACE("(%s, %s, %p): stub\n", de

Re: ole32: Add CoGetDefaultContext stub

2012-09-19 Thread Huw Davies
On Wed, Sep 19, 2012 at 09:09:55AM +0200, Michael Stefaniuc wrote: > > +/*** > > + * CoGetContextToken [OLE32.@] > copy and paste error ^^^ > > > + */ > > +HRESULT CoGetDefaultContext(APTTYPE type, REFIID riid, LPVOID *p

Re: ole32: Add CoGetDefaultContext stub

2012-09-19 Thread Michael Stefaniuc
Hallo Alistair, > --- > dlls/ole32/compobj.c |9 + > dlls/ole32/ole32.spec |1 + > 2 files changed, 10 insertions(+) > > diff --git a/dlls/ole32/compobj.c b/dlls/ole32/compobj.c > index 0055d15..2ea1dc9 100644 > --- a/dlls/ole32/compobj.c > +++ b/dlls/ole32/compobj.c > @@ -4279,