Re: Death to win9x?

2010-12-22 Thread Saulius Krasuckas
* On Wed, 22 Dec 2010, Jacek Caban wrote: > > dropping win9x tests has nothing to do with dropping win9x support. It has, but in a small degree -- if win9x support regresses now, these existing few cases of testing win9x specifics won't do their job. > These test results weren't helpful nor us

Phoronix benchmarked opengl games on wine...

2010-12-22 Thread Dan Kegel
http://www.phoronix.com/scan.php?page=article&item=wine_win7_2010 "With this testing we ran eight games/benchmarks natively under Ubuntu 10.10, the Windows binaries under the stable Wine 1.2.1, the Windows binaries under the Wine 1.3.9 development snapshot, and then finally under Microsoft Windows

Re: shell32/tests: Fix a typo

2010-12-22 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=7800 Your paranoid android.

Re: The Windows version of the "octave --version" command exposes an uncommon X network transparency issue for wine

2010-12-22 Thread Hin-Tak Leung
Alan W. Irwin wrote: wineconsole --backend=curses MinGW/msys/1.0/bin/bash.exe Under that bash if I set the PATH to include the bin directory where octave.exe resides and run octave --version directly (i.e., not from an X-terminal) I get a good result which consists of the usual GNU octave ver

Re: [PATCH] d3dcompiler_43/tests: Added error tests to HLSL test suite

2010-12-22 Thread Michael Stefaniuc
Hello Travis, On 12/22/2010 10:31 PM, Travis Athougies wrote: Tests to ensure the HLSL compiler won't crash on malformed input. --- dlls/d3dcompiler_43/tests/hlsl.c | 87 ++ 1 files changed, 87 insertions(+), 0 deletions(-) diff --git a/dlls/d3dcompiler

Re: New winetricks 20101222: new verbs icodecs, msnasn1, opensymbol, wmi, xmllite; removed obsolete verbs audioio, dcom98, eadm, urlmon

2010-12-22 Thread Dan Kegel
Roseanne wrote: > Urlmon is needed to work around bugs 25492 and 25494. Jacek suggests installing ie7 (and possibly limiting overrides to just urlmon). He warns that the old ie6-era urlmon winetricks was using would cause more and more problems as he continues moving wine over to ie7-style infras

Re: New winetricks 20101222: new verbs icodecs, msnasn1, opensymbol, wmi, xmllite; removed obsolete verbs audioio, dcom98, eadm, urlmon

2010-12-22 Thread Rosanne DiMesio
On Wed, 22 Dec 2010 11:41:13 -0800 Dan Kegel wrote: > the audioio, dcom98, eadm, and urlmon verbs are gone, let > me know if you really need those! > Urlmon is needed to work around bugs 25492 and 25494. -- Rosanne DiMesio

New winetricks 20101222: new verbs icodecs, msnasn1, opensymbol, wmi, xmllite; removed obsolete verbs audioio, dcom98, eadm, urlmon

2010-12-22 Thread Dan Kegel
Another month, another Winetricks. Online as always at http://kegel.com/wine/winetricks or http://winezeug.googlecode.com (Bug reports to the issue tracker at the above URL, please.) Changes: Lots of bugfixes. wsh57 now works with vb scripts. The code has undergone some spring cleaning, so w

Re: Death to win9x?

2010-12-22 Thread Jacek Caban
On 12/22/10 5:52 PM, joerg-cyril.hoe...@t-systems.com wrote: Hi, André Hentschel wrote: actually we just always need to do something like skip() or broken() and that's nothing else as ignoring the test results of 9x Well, I could sympathize with the idea of removing all broken(/*win9x*/) and l

Death to win9x?

2010-12-22 Thread Joerg-Cyril.Hoehle
Hi, André Hentschel wrote: >actually we just always need to do something like skip() or broken() > and that's nothing else as ignoring the test results of 9x Well, I could sympathize with the idea of removing all broken(/*win9x*/) and leave only skip() such that the tests don't crash prematurely.

Re: [PATCH 4/6] urlmon: Add some error handling to the http protocol.

2010-12-22 Thread jacek
On 12/22/10 2:17 PM, David Hedberg wrote: > Hi Jacek, > On Wed, Dec 22, 2010 at 13:07, Jacek Caban wrote: >>> +if(security_problem) { >>> +hres = IUnknown_QueryService((IUnknown*)This->base.protocol_sink, >> You shouldn't need the cast here. > I get warnings if I leave the casts out tho

Re: [PATCH 2/2] shell32: Add IInputObject stub to IExplorerBrowser.

2010-12-22 Thread Alexandre Julliard
David Hedberg writes: > +WPARAM supported_key_accels[] = { /* Win7 */ > +VK_RETURN, VK_PRIOR, VK_NEXT, VK_END, VK_HOME, VK_LEFT, VK_UP, > VK_RIGHT, > +VK_DOWN, VK_F10, 0 }; > +MSG msg_a = { > +hwnd, > +supported_key_accels[1], This doesn't make sense, you

Re: [PATCH 4/6] urlmon: Add some error handling to the http protocol.

2010-12-22 Thread David Hedberg
Hi Jacek, On Wed, Dec 22, 2010 at 13:07, Jacek Caban wrote: >> +    if(security_problem) { >> +        hres = IUnknown_QueryService((IUnknown*)This->base.protocol_sink, > > You shouldn't need the cast here. > I get warnings if I leave the casts out though, and I can't see any obvious problem wi

Shell.Application

2010-12-22 Thread Alexander Morozov
Some Windows programs use Shell.Application object (sample: http://bugs.winehq.org/show_bug.cgi?id=8987). This object has IShellDispatch, IShellDispatch2, IShellDispatch3, ... interfaces (http://www.com.it-berater.org/COM/windows_shell/interfaces/IShellDispatch.htm). If IShellDispatch is suffi

Re: [PATCH 5/6] urlmon: Add new on_error function to protocol vtbl.

2010-12-22 Thread Jacek Caban
Hi David On 12/22/10 12:50 AM, David Hedberg wrote: --- dlls/urlmon/protocol.c|6 +- dlls/urlmon/urlmon_main.h |1 + 2 files changed, 6 insertions(+), 1 deletions(-) diff --git a/dlls/urlmon/protocol.c b/dlls/urlmon/protocol.c index 669343b..bb17453 100644 --- a/dlls/urlmon/

Re: [PATCH 4/6] urlmon: Add some error handling to the http protocol.

2010-12-22 Thread Jacek Caban
Hi David, On 12/22/10 12:50 AM, David Hedberg wrote: --- dlls/urlmon/http.c | 99 +-- dlls/urlmon/tests/url.c | 25 2 files changed, 120 insertions(+), 4 deletions(-) diff --git a/dlls/urlmon/http.c b/dlls/urlmon/http.c index

RE: shdocvw/tests: need to save .url before committing extra props for

2010-12-22 Thread Greg Geldorp
Discard this one, should have run the modified tests on Wine too... Greg.