Re: oleaut32/tests: added tests for negative fractional variant dates.

2010-10-01 Thread Jeremy Drake
Oops, those empty parens () were intended to cite the URL for the article. Unfortunately, I can't seem to find it now. However, I found an MSDN page that describes the behavior I am testing here: http://msdn.microsoft.com/en-us/library/system.datetime.fromoadate.aspx This is actually documentatio

Re: [PATCH1/3] include/winternl: Add Logical Processor Information to SYSTEM_CPU_INFORMATION

2010-10-01 Thread Dmitry Timoshkov
Rudolf Mayerhofer wrote: > /* System Information Class 0x01 */ > +typedef struct _SYSTEM_CPU_CACHE_INFORMATION { > +ULONG ProcessorMask; > +CACHE_DESCRIPTOR CacheInformation; > +} SYSTEM_CPU_CACHE_INFORMATION, *PSYSTEM_CPU_CACHE_INFORMATION; > > typedef struct _SYSTEM_CPU_INFORMATI

mono packaging, for wine packagers or anyone else who wants to follow along

2010-10-01 Thread Vincent Povirk
Buried in the 1.3.4 announcement is a tiny, insignificant little change that makes it possible for distributors to package Mono for Wine: mscoree: Search for Mono in some predefined paths before using the registry. As happy as I am to have sneaked this in under the radar, as it were, I guess I'm

New version of exe-thumbnailer (0.7)

2010-10-01 Thread Scott Ritchie
Includes much prettier icons, support for Vista icons (with icoutils 0.29.1) and more. Screenshots and a description are at: http://wiki.winehq.org/exe-thumbnailer -Scott Ritchie

Re: wininet(4/5): Support querying the cipher strength of an SSL connection

2010-10-01 Thread Juan Lang
> === W2K8SE (32 bit http) === > http.c:406: Test failed: expected status 11 (INTERNET_STATUS_NAME_RESOLVED) 1 > times, received 0 times > http.c:413: Test failed: expected status 30 (INTERNET_STATUS_SENDING_REQUEST) > 2 times, received 0 times > http.c:414: Test failed: expected status 31 (INTER

[tools PATCH] patches: Mention Windows test failures as a cause for 'Test failure' status

2010-10-01 Thread Andrew Eikum
The current 'Test failure' description implies (to me, at least) that it's only Wine failures that cause the status. It might be obvious, but it seems worth explicitly mentioning that Windows failures can cause it as well. --- On 10/01/2010 09:45 AM, Alexandre Julliard wrote: On 09/24/201

Re: [2/2] msi: Set more 64-bit properties.

2010-10-01 Thread testbot
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=5687 Your paranoid android.

Re: [PATCH] user32: Implement GetMenuBarInfo

2010-10-01 Thread Alexandre Julliard
Andrew Eikum writes: > On 09/24/2010 02:59 PM, Andrew Eikum wrote: >> Likely fixes bug 18776. >> >> This patch is based heavily on a patch from Rein Klazes which was >> rejected last summer. According to comments on the bug, Rein's patch >> appears abandoned. >>

Re: [PATCH] user32: Implement GetMenuBarInfo

2010-10-01 Thread Andrew Eikum
On 09/24/2010 02:59 PM, Andrew Eikum wrote: Likely fixes bug 18776. This patch is based heavily on a patch from Rein Klazes which was rejected last summer. According to comments on the bug, Rein's patch appears abandoned. The

Re: mshtml.inf: Add default GeckoCabDir

2010-10-01 Thread Alexandre Julliard
Jacek Caban writes: > That's a matter of trivial patch, but what would be the candidate for > a path hardcode? '/usr/share/wine/gecko/' seems like the best choice > since that's where most distros will install Gecko. I'd say try $datadir and then /usr/share. > - Windows has builtin support for

Re: mshtml.inf: Add default GeckoCabDir

2010-10-01 Thread Vitaliy Margolen
On 10/01/2010 06:53 AM, Jacek Caban wrote: - Windows has builtin support for ZIP files. It's hidden behind an obscure APIs, but it's something we could implement and use in MSHTML. - Use .tar.gz files. We already use zlib in Wine, we could use it in MSHTML. tar format is simple enough to implemen

Re: mshtml.inf: Add default GeckoCabDir

2010-10-01 Thread Jacek Caban
On 10/1/10 2:31 PM, Alexandre Julliard wrote: Jacek Caban writes: You can't do that. The default is what's found by 'step (2)' from your description, not any hardcoded path. The version from Gecko package is meant for packaged Wine. You should copy the .cab file to appropriate directory for y

Re: mshtml.inf: Add default GeckoCabDir

2010-10-01 Thread Alexandre Julliard
Jacek Caban writes: > You can't do that. The default is what's found by 'step (2)' from your > description, not any hardcoded path. The version from Gecko package is > meant for packaged Wine. You should copy the .cab file to appropriate > directory for your own build. I don't think there would

Re: [PATCH 1/5] d3dcompiler_43/tests: Added HLSL test suite

2010-10-01 Thread Henri Verbeet
I think this is going in the right direction, but I still have a couple of comments. On 1 October 2010 00:43, Travis Athougies wrote: > +/* Macro to compare two floating point numbers */ > +#define F_EQ(a, b, epsilon) (fabs(a - b) <= epsilon) There's no reason this can't be an inline function. >

Re: mshtml.inf: Add default GeckoCabDir

2010-10-01 Thread GOUJON Alexandre
That's intended. It's for overwriting defaults (although now that we install Gecko during wineprefix creation is doesn't make much sense anyways). You can't do that. The default is what's found by 'step (2)' from your description, not any hardcoded path. The version from Gecko package is meant

Re: mshtml.inf: Add default GeckoCabDir

2010-10-01 Thread Jacek Caban
On 10/1/10 1:06 PM, GOUJON Alexandre wrote: On 10/01/2010 12:17 PM, Austin English wrote: On Fri, Oct 1, 2010 at 4:29 AM, Alexandre Goujon wrote: diff --git a/dlls/mshtml/mshtml.inf b/dlls/mshtml/mshtml.inf index d7d2428..dea1712 100644 --- a/dlls/mshtml/mshtml.inf +++ b/dlls/mshtml/mshtml.in

Re: [PATCH] jscript: throw TypeError if T in 'new T' is not an object. [try 2]

2010-10-01 Thread Jacek Caban
On 10/1/10 9:59 AM, Reece Dunn wrote: Hi, try 1 -- throw TypeError if T in 'new T' is not an object. try 2 -- handle the case when using a null dispatch pointer: `new nullDisp;` NOTE: given `new 3;` the engine should report IDS_UNSUPPORTED_ACTION instead of IDS_NO_PROPERTY but this requires mo

Re: mshtml.inf: Add default GeckoCabDir

2010-10-01 Thread GOUJON Alexandre
On 10/01/2010 12:17 PM, Austin English wrote: On Fri, Oct 1, 2010 at 4:29 AM, Alexandre Goujon wrote: diff --git a/dlls/mshtml/mshtml.inf b/dlls/mshtml/mshtml.inf index d7d2428..dea1712 100644 --- a/dlls/mshtml/mshtml.inf +++ b/dlls/mshtml/mshtml.inf @@ -273,6 +273,7 @@ HKLM,"Software\Micro

Re: [PATCH] jscript: throw TypeError if T in 'new T' is not an object. [try 2]

2010-10-01 Thread Ricardo Filipe
2010/10/1 Reece Dunn : > Hi, > > try 1 -- throw TypeError if T in 'new T' is not an object. > try 2 -- handle the case when using a null dispatch pointer: `new nullDisp;` > > NOTE: given `new 3;` the engine should report IDS_UNSUPPORTED_ACTION > instead of IDS_NO_PROPERTY but this requires more cha

Re: mshtml.inf: Add default GeckoCabDir

2010-10-01 Thread Austin English
On Fri, Oct 1, 2010 at 4:29 AM, Alexandre Goujon wrote: > diff --git a/dlls/mshtml/mshtml.inf b/dlls/mshtml/mshtml.inf > index d7d2428..dea1712 100644 > --- a/dlls/mshtml/mshtml.inf > +++ b/dlls/mshtml/mshtml.inf > @@ -273,6 +273,7 @@ HKLM,"Software\Microsoft\Internet Explorer\Default > Behaviors

Re: [PATCH] jscript: throw TypeError if T in 'new T' is not an object. [try 2]

2010-10-01 Thread testbot
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=5679 Your paranoid android.