Re: kernel32/tests: check return value of alarmThread in test_NamedPipe_2()

2010-05-22 Thread Andrew Nguyen
On Sat, May 22, 2010 at 2:06 AM, Austin English austinengl...@gmail.com wrote: Also fix a typo. Passes WTB: https://testbot.winehq.org/JobDetails.pl?Key=2242 -- -Austin While you're at it, you might as well fix the change typo.

Re: gdi32/tests: use ret in test_CreateFontIndirect()

2010-05-22 Thread Dmitry Timoshkov
Austin English austinengl...@gmail.com wrote: @@ -3096,6 +3096,7 @@ static void test_CreateFontIndirect(void) hfont = CreateFontIndirectA(lf); ok(hfont != 0, CreateFontIndirectA failed\n); ret = GetObject(hfont, sizeof(getobj_lf), getobj_lf); +ok(ret,

Re: kernel32/tests: use ret in load_blackbox()

2010-05-22 Thread Dmitry Timoshkov
Austin English austinengl...@gmail.com wrote: ret=ReadFile(hFile, blackbox, size, read, NULL); +ok(ret, ReadFile failed: %08x\n, GetLastError()); Printing last error without prior setting it to 0xdeadfeef won't really help. Also errors returned by GetLastError() are defined in decimal

Re: kernel32/tests: check return value of alarmThread in test_NamedPipe_2()

2010-05-22 Thread Dmitry Timoshkov
Austin English austinengl...@gmail.com wrote: alarmThread = CreateThread(NULL, 0, alarmThreadMain, (void *) 2, 0, alarmThreadId); +ok(alarmThread != INVALID_HANDLE_VALUE, CreateThread\n); CreateThread doesn't return INVALID_HANDLE_VALUE on failure. Clarifying the error message

Re: kernel32/tests: use ret in load_blackbox()

2010-05-22 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=2243 Your paranoid

Re: user32/tests: check return value of GetUpdateRect in test_validatergn

2010-05-22 Thread Dmitry Timoshkov
Austin English austinengl...@gmail.com wrote: ValidateRect( hwnd, rc); ret = GetUpdateRect( child, rc2, 0); +ok(!ret, GetUpdateRect failed %08x\n, GetLastError()); ok( rc2.left == 0 rc2.top == 0 rc2.right == 0 rc2.bottom == 0, Update rectangle %d,%d-%d,%d

Re: user32/tests: check return value of GetUpdateRect in test_validatergn

2010-05-22 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=2251 Your paranoid

Re: Re: user32/tests: check return value of DdeClientTransaction in test_initialisation()

2010-05-22 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=2250 Your paranoid

Re: kernel32/tests: check return value of alarmThread in test_NamedPipe_2()

2010-05-22 Thread Austin English
On Sat, May 22, 2010 at 2:17 AM, Dmitry Timoshkov dmi...@codeweavers.com wrote: Austin English austinengl...@gmail.com wrote:      alarmThread = CreateThread(NULL, 0, alarmThreadMain, (void *) 2, 0, alarmThreadId); +    ok(alarmThread != INVALID_HANDLE_VALUE, CreateThread\n);

Re: kernel32/tests: use ret in load_blackbox() (try 2)

2010-05-22 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=2254 Your paranoid

Re: user32/tests: check return value of GetUpdateRect in test_validatergn (try 2)

2010-05-22 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=2258 Your paranoid

Re: kernel32/tests: check return value of alarmThread in test_NamedPipe_2() (try 2)

2010-05-22 Thread Andrew Nguyen
On Sat, May 22, 2010 at 5:02 AM, Austin English austinengl...@gmail.com wrote: Changes from try 1: Fix another typo. Set LastError before checking it Print LastError as a decimal Don't check for INVALID_HANDLE_VALUE as a return value of CreateThread, instead make sure serverThread is not

make bisected a keyword in bugzilla?

2010-05-22 Thread Wolfram Sang
Hi, I noticed that Wylda uses --private keyword: bisected when appropriate. IMHO this could be useful as a real keyword, e.g. if you search for bugs you'd like to try tackling. Has this been considered already? Regards, Wolfram

Re: make bisected a keyword in bugzilla?

2010-05-22 Thread Dmitry Timoshkov
Wolfram Sang wolf...@the-dreams.de wrote: I noticed that Wylda uses --private keyword: bisected when appropriate. IMHO this could be useful as a real keyword, e.g. if you search for bugs you'd like to try tackling. Has this been considered already? There is a keyword 'regression', that should

Re: make bisected a keyword in bugzilla?

2010-05-22 Thread Maarten Lankhorst
Hello, On 22-05-10 17:15, Wolfram Sang wrote: I noticed that Wylda uses --private keyword: bisected when appropriate. IMHO this could be useful as a real keyword, e.g. if you search for bugs you'd like to try tackling. Has this been considered already? I don't think that keyword is needed,

Re: Release plans

2010-05-22 Thread Damjan Jovanovic
On Thu, May 20, 2010 at 10:25 PM, Steven Edwards winehac...@gmail.com wrote: On Thu, May 20, 2010 at 4:17 PM, Steven Edwards winehac...@gmail.com wrote: I've tried with other PNGs before that we've not generated. Take a third party png, edit the Info.plist and change the icon entry to instead

Re: crypt32: use ret in compareStore() (try 2)

2010-05-22 Thread Juan Lang
Hi Austin, +SetLastError(0xdeadbeef); ret = CertSaveStore(store, X509_ASN_ENCODING, CERT_STORE_SAVE_AS_STORE, CERT_STORE_SAVE_TO_MEMORY, blob, 0); +todo_wine ok(ret GetLastError() == CRYPT_E_NOT_FOUND, CertSaveStore failed. Expected CRYPT_E_NOT_FOUND, got %d\n,

Re: [5/5] winemenubuilder: remove legacy PNG and XPM conversion code

2010-05-22 Thread Vincent Povirk
Fools! With this patch, the WIC empire shall finally be complete. Er, I mean, this is pretty cool. And thanks for the ICO decoder fix. On Sat, May 22, 2010 at 11:01 AM, Damjan Jovanovic damjan@gmail.com wrote: Changelog: * winemenubuilder: remove legacy PNG and XPM conversion code The

Re: kernel32/tests: check return value of alarmThread in test_NamedPipe_2() (try 2)

2010-05-22 Thread Austin English
On Sat, May 22, 2010 at 9:44 AM, Andrew Nguyen arethus...@gmail.com wrote: On Sat, May 22, 2010 at 5:02 AM, Austin English austinengl...@gmail.com wrote: Changes from try 1: Fix another typo. Set LastError before checking it Print LastError as a decimal Don't check for INVALID_HANDLE_VALUE

Re: make bisected a keyword in bugzilla?

2010-05-22 Thread wylda
Wolfram Sang wolf...@the-dreams.de wrote: I noticed that Wylda uses --private keyword: bisected when appropriate. IMHO this could be useful as a real keyword, e.g. if you search for bugs you'd like to try tackling. Has this been considered already? There is a keyword 'regression',

Re: make bisected a keyword in bugzilla?

2010-05-22 Thread Nikolay Sivov
On 5/23/2010 00:50, wy...@volny.cz wrote: Wolfram Sangwolf...@the-dreams.de wrote: I noticed that Wylda uses --private keyword: bisected when appropriate. IMHO this could be useful as a real keyword, e.g. if you search for bugs you'd like to try tackling. Has this been

Re: make bisected a keyword in bugzilla?

2010-05-22 Thread wylda
Compare this with regressions which are bisected (aka bug served on silver tray), so saves a lot of time. And of course such a keyword would help in dev's triage what to fix first. Actually a regression keyword supposes to mean exactly the same. It just happens that it's added every

Re: make bisected a keyword in bugzilla?

2010-05-22 Thread Nikolay Sivov
On 5/23/2010 01:22, wy...@volny.cz wrote: Actually a regression keyword supposes to mean exactly the same. It just happens that it's added every time someone decided to add it. IMO it should be added only when regression test results are available I wouldn't like it

Re: make quot;bisectedquot; a keyword in bugzilla?

2010-05-22 Thread Louis Lenders
Nikolay Sivov nsivov at codeweavers.com writes: I believe developer's attention doesn't depend on bug state (confirmed/uncofirmed) at all. I'm not sure about that, my experience is that some developers do care about regressions and some don't (actually i think that they missed the bug

Re: make bisected a keyword in bugzilla?

2010-05-22 Thread Sven Baars
Louis Lenders wrote: Nikolay Sivovnsivovat codeweavers.com writes: I believe developer's attention doesn't depend on bug state (confirmed/uncofirmed) at all. I'm not sure about that, my experience is that some developers do care about regressions and some don't

Re: too much dynamic loading?

2010-05-22 Thread Francois Gouget
On Fri, 21 May 2010, Steven Edwards wrote: On Fri, May 21, 2010 at 1:28 PM, Marcus Meissner mar...@jet.franken.dewrote: No static linking either, its the nightmare of security maintainers ;) Good point. Direct Linking then. I am just in favor of changing it to something other than the

Re: make bisected a keyword in bugzilla?

2010-05-22 Thread Erich Hoover
On Sat, May 22, 2010 at 3:41 PM, Louis Lenders xerox_xerox2...@yahoo.co.uk wrote: Nikolay Sivov nsivov at codeweavers.com writes: I believe developer's attention doesn't depend on bug state (confirmed/uncofirmed) at all. I'm not sure about that, my experience is that some developers do

re: make bisected a keyword in bugzilla?

2010-05-22 Thread Dan Kegel
I think it's a good idea. 'regression' isn't as strong as 'bisected'. Unless there are objections, I'll add the keyword on Monday.

Re: software built and worked under wine but not in vista?

2010-05-22 Thread Hin-Tak Leung
Thanks for everybody who advised. I have filed the two bugs under: [Bug 22813] wine's loader does not check invalid image size [Bug 22812] mt creates corrupted executables In a nutshell, just before running mt, wine and vista generates very similiar executables (differing by 4 bytes, two about

Re: make bisected a keyword in bugzilla?

2010-05-22 Thread Wolfram Sang
but this isn't going to happen of course for obvious reasons (some reporters don't bother to respond in months). If no test was performed a developer will see a report anyway, searching for a module of interest. I still think that REGRESSION != BISECTED, but i don't argue or enforce That

Re: make bisected a keyword in bugzilla?

2010-05-22 Thread Maarten Lankhorst
Hi Dan, On 23-05-10 01:57, Dan Kegel wrote: I think it's a good idea. 'regression' isn't as strong as 'bisected'. Unless there are objections, I'll add the keyword on Monday. I think I'll object. I don't see any point in the bisected tag that regression doesn't already cover. As far as I

Re: make bisected a keyword in bugzilla?

2010-05-22 Thread Erich Hoover
On Sat, May 22, 2010 at 6:55 PM, Maarten Lankhorst m.b.lankho...@gmail.com wrote: Hi Dan, On 23-05-10 01:57, Dan Kegel wrote: I think it's a good idea.  'regression' isn't as strong as 'bisected'. Unless there are objections, I'll add the keyword on Monday. I think I'll object. I don't

Re: too much dynamic loading?

2010-05-22 Thread ryan woodsmall
I'm not convinced direct linking will work better on Mac OS X, unless you ship libpng and libjpeg with Wine. And libgnutls (plus prereqs libgpg-error libgcrypt). And libgphoto2, libexif, libtiff, libgsm, libjbig... - there's a laundry list of libraries that are required for a full-featured

Re: make bisected a keyword in bugzilla?

2010-05-22 Thread Vincent Povirk
I'm starting to wonder about the use cases for both of those keywords. Personally, I mostly ignore the regression keyword. As a developer looking for bugs to work on, I've found it not very useful. At a given point in time, most regression bugs are not easier, more severe, or more important than

Re: make bisected a keyword in bugzilla?

2010-05-22 Thread Dmitry Timoshkov
Maarten Lankhorst m.b.lankho...@gmail.com wrote: On 23-05-10 01:57, Dan Kegel wrote: I think it's a good idea. 'regression' isn't as strong as 'bisected'. Unless there are objections, I'll add the keyword on Monday. I think I'll object. I don't see any point in the bisected tag

Re: make bisected a keyword in bugzilla?

2010-05-22 Thread wylda
Used to say here... Don't teach old eagle to fly :) Same way i shouldn't teach developer how to write patch and for which bug. For this reason (as i said before) i can live without BISECTED. Personally, I mostly ignore the regression keyword. That's OK if you have a proprietary system of work