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 android.

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 android.

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

2010-05-22 Thread Dmitry Timoshkov
Austin English 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 in winerror.h. --