Re: kernel32/tests: remove win9x hacks

2011-02-24 Thread Max TenEyck Woodbury
On 02/23/2011 09:23 PM, James McKenzie wrote: On 2/23/11 2:38 AM, Austin English wrote: On Wed, Feb 23, 2011 at 01:32, Paul Vrienspaul.vriens.w...@gmail.com wrote: On 02/23/2011 10:15 AM, Austin English wrote: SetLastError(0xdeadbeef); ret = GetFullPathNameW(NULL, 0, NULL, NULL); I think you

Re: kernel32/tests: remove win9x hacks (try 2)

2011-02-24 Thread Damjan Jovanovic
On Wed, Feb 23, 2011 at 9:13 PM, Austin English austinengl...@gmail.com wrote: On Wed, Feb 23, 2011 at 03:17, Damjan Jovanovic damjan@gmail.com wrote: On Wed, Feb 23, 2011 at 11:38 AM, Austin English austinengl...@gmail.com wrote: -- -Austin So test.winehq.org doesn't test Win9x any

Re: kernel32/tests: remove win9x hacks (try 2)

2011-02-24 Thread Alexandre Julliard
Damjan Jovanovic damjan@gmail.com writes: What's the first Git version of Wine on which Win9x tests started being removed? Is it 226c44097b26dcb547d533cb1690f60182d1728e or b7c18d104b2d68a2a07574f01bb306df3fc138d2? It might still be useful to cross-compile tests on the version before that

Re: [PATCH 1/7] mshtml: Added IHTMLElement4 stub implementation

2011-02-24 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=9447 Your paranoid

Re: [PATCH 5/7] mshtml: Added attribute object tests

2011-02-24 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=9448 Your paranoid

Re: kernel32/tests: remove win9x hacks (try 2)

2011-02-24 Thread Saulius Krasuckas
* On Thu, 24 Feb 2011, Alexandre Julliard wrote: The win9x support makes the tests less strict, by allowing additional behaviors, and that only when running on Windows. Is that a problem? Running them on Wine is pointless since these code paths are never executed. I may be missing the

Re: gdi32: Fix the glyph rotation transformation matrix.

2011-02-24 Thread Alexander Kochetkov
Hi, Dmitry Timoshkov! The patch brakes rotation for modes with positive axis. Try apply this patch to the test application attached to the bug #22996. diff -Naur ./test_emf_textout.orig/test_emf_textout/test.c ./test_emf_textout/test_emf_textout/test.c ---

Re: gdi32: Fix the glyph rotation transformation matrix.

2011-02-24 Thread Alexander Kochetkov
Also you can try the following combinations: 1) x - positive, y - positive, 2) x - a positive, y - negative; 3) x - negative, y - positive, 4) x - negative, y - negative I would like to offer another solution to this problem. I can do than this evening.

Re: gdi32: Use graphics mode specified at the EMF creation time when playing EMR_EXTTEXTOUT record.

2011-02-24 Thread Alexander Kochetkov
+ +        SetGraphicsMode(hdc, old_mode);        break;     } Hi, Dmitry Timoshkov! Needs to reselect font again after restore old_mode in case pExtTextOutW- iGraphicsMode != old_mode. Otherwise, the font will remain with the wrong glyph orientation. I can write a test demonstrating the

Re: gdi32: Use graphics mode specified at the EMF creation time when playing EMR_EXTTEXTOUT record.

2011-02-24 Thread Alexander Kochetkov
Hi, Dmitry Timoshkov! Needs to reselect font again after restore old_mode in case pExtTextOutW- iGraphicsMode != old_mode. Otherwise, the font will remain with the wrong glyph orientation. I can write a test demonstrating the problem. Resect font is needed only if pExtTextOutW-

Re: kernel32/tests: remove win9x hacks (try 2)

2011-02-24 Thread Alexandre Julliard
Saulius Krasuckas sauli...@ar.fi.lt writes: I have at least one Win16 app which behaves differently on Win16, on XP and on Wine [*]. What's the right way to get it running OK on Wine then (without appropriate Win16API tests) ? Fix the bug without a test, or work on adding a 16-bit test

Re: urlmon/tests: Add BINDSTATUS_DECODING progress case

2011-02-24 Thread Jacek Caban
Hi André, On 2/24/11 6:52 PM, André Hentschel wrote: happens on nt, xp and 2k3 That's the effect of switching winehq.org to using gzip. I think we need to change all different http-related tests to use a centralized place for tests. Something like set of PHP scripts on test.winehq.org or a

Re: msvcrt/tests: Don't test function directly when reporting errno

2011-02-24 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=9458 Your paranoid

Re: [PATCH] user32: Fixed some more sideeffect functions in assert() (Coverity)

2011-02-24 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=9451 Your paranoid

Re: oleaut32/tests: fix a couple todo_wine's

2011-02-24 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=9472 Your paranoid

Re: GSOC idea to implement the explorer

2011-02-24 Thread Andrew Green
Thank you for your support. I will probably make two proposals. One for theming and one for explorer. Of course my proposals will only be using c as the programming language. It looks like I have a lot of research to do before I can submit my application. On Wed, Feb 23, 2011 at 3:20 AM, Juan

More FAQ reverts

2011-02-24 Thread Vitaliy Margolen
In case kjensen will start looking why I reverted his changes - they are wrong. Obviously he didn't test them. $1 `wine winepath -u $2` | sed 's/ /\\ /' Not sure how piping output of a native command through sed will fix argument to the program contain spaces it will not work. The argument

Re: localspl/tests: test cleanup

2011-02-24 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=9481 Your paranoid