Wine users with a CD-ROM drive, please test

2010-08-11 Thread Joerg-Cyril.Hoehle
Hi, No more MCIERR_HARDWARE in David's latest test result, hurray! The difference with prior tests is that I temporarily eliminated 3 commands a) resume c b) set c video audio all off c) set c door closed notify We are not done yet. Users who saw that error please feed the following scripts

Re: [PATCH 1/2] dmime/tests: Added tests for IDirectMusicPerformance.

2010-08-11 Thread David Adam
Hello, some comments about this patch +if (hr != S_OK) return FALSE; +else return TRUE; could be simplified as return SUCCEEDED(hr); +trace(HRESULT when creating instance (%x)\n, hr); Since tests are assumed to pass, we dont care about debug informations. So, traces are useless in

kernel32/tests: GetVolumeInformationA X: succeeds iff drive's default dir is root. (try 2)

2010-08-11 Thread Joerg-Cyril.Hoehle
Hi, what happened to this patch? It's still marked new. Is the discovery too surprising? (Maybe it's the wrong time to ask with AJ still on vacation) Is it not robust enough (lacking testing with network drives)? It explains bugs #20887 and #23355. It may explain intermittent failures in

Wine users with a CD-ROM drive, please test

2010-08-11 Thread Joerg-Cyril.Hoehle
Hi, testbot.winehq.org job #4404 now contains another patch and binary. I removed the call to set c door closed estimating that this was the most likely among the three suspects to cause the error (I also reduced the Sleep() time). Please test yet once again. I've not changed anything about

Re: [PATCH 1/2] dmime/tests: Added tests for IDirectMusicPerformance.

2010-08-11 Thread Chris Robinson
On Wednesday, August 11, 2010 3:12:23 am David Adam wrote: Hello, some comments about this patch +if (hr != S_OK) return FALSE; +else return TRUE; could be simplified as return SUCCEEDED(hr); SUCCEEDED encompasses more than just S_OK (S_FALSE, for instance; basically anything

Re: Wine users with a CD-ROM drive, please test

2010-08-11 Thread Erik Inge Bolsø
On Wed, 11 Aug 2010, joerg-cyril.hoe...@t-systems.com wrote: Hi, testbot.winehq.org job #4404 now contains another patch and binary. I removed the call to set c door closed estimating that this was the most likely among the three suspects to cause the error (I also reduced the Sleep()

Re: [PATCH] qmgr/tests: Detect, when the service is disabled

2010-08-11 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=4405 Your paranoid

Re: [(try 2) 02/11] d3d10: Implement D3D10CreateBlob().

2010-08-11 Thread Stefan Dösinger
Am 11.08.2010 um 21:51 schrieb Rico Schüller: --- a/dlls/d3d10/d3d10_private.h +++ b/dlls/d3d10/d3d10_private.h @@ -212,6 +212,17 @@ struct d3d10_effect struct d3d10_effect_technique *techniques; }; +extern const struct ID3D10BlobVtbl d3d10_blob_vtbl DECLSPEC_HIDDEN; Do you need the

Re: [PATCH 1/2] dmime/tests: Added tests for IDirectMusicPerformance.

2010-08-11 Thread Austin Lund
On 11 August 2010 20:12, David Adam david.adam.c...@gmail.com wrote: Hello, thanks for the comments. I've resent. +    todo_wine ok(*(ULONG *)pDirectMusicPort != 0, IDirectMusicPort not set\n); Why is this cast useful? I wasn't sure of the best way to do this. But basically I want to

Re: [PATCH 1/2] dmime/tests: Added tests for IDirectMusicPerformance. (try 2)

2010-08-11 Thread James McKenzie
Austin Lund wrote: Why the try2? It is always nice to put why you are doing this in the git commit notes. AJ is on vakay and will not be back until next week so there are NO reviews ongoing this week, except developer peer ones. James McKenzie

Re: [PATCH 1/2] dmime/tests: Added tests for IDirectMusicPerformance. (try 2)

2010-08-11 Thread Austin Lund
On 12 August 2010 13:16, James McKenzie jjmckenzi...@earthlink.net wrote: Austin Lund wrote: Why the try2?  It is always nice to put why you are doing this in the git commit notes. I was responding to review. I'm sorry if I've done something confusing.

Fwd: Should we expect Liberation fonts to be installed?

2010-08-11 Thread Paul TBBle Hampson
Sorry, I failed at Gmail again. _ -- Forwarded message -- From: Paul TBBle Hampson paul.hamp...@pobox.com Date: 12 August 2010 13:52 Subject: Re: Should we expect Liberation fonts to be installed? To: Scott Ritchie sc...@open-vote.org On 8 August 2010 13:02, Scott Ritchie

Re: kernel32/tests: GetVolumeInformationA X: succeeds iff drive's default dir is root. (try 2)

2010-08-11 Thread Vitaliy Margolen
On 08/11/2010 05:03 AM, joerg-cyril.hoe...@t-systems.com wrote: Hi, what happened to this patch? It's still marked new. Is the discovery too surprising? (Maybe it's the wrong time to ask with AJ still on vacation) According to this:

Re: [PATCH 1/2] dmime/tests: Added tests for IDirectMusicPerformance.

2010-08-11 Thread Vitaliy Margolen
On 08/11/2010 09:14 PM, Austin Lund wrote: On 11 August 2010 20:12, David Adamdavid.adam.c...@gmail.com wrote: I wasn't sure of the best way to do this. But basically I want to check that the Vtbl had been set. I cannot cast to IDirectMusicPortImpl and I'm still confused by the COM macros.

Re: [PATCH 1/2] dmime/tests: Added tests for IDirectMusicPerformance. (try 2)

2010-08-11 Thread Vitaliy Margolen
On 08/11/2010 08:58 PM, Austin Lund wrote: +static BOOL test_InitAudio(void) +{ +hr = IDirectMusicPerformance8_InitAudio(idmusicperformance,NULL,pDirectSound,NULL,1,128,0x3f,NULL); +if (hr != S_OK) return FALSE; +else return TRUE; +} Please put spaces after comas, as you do in

Re: [PATCH 1/2] dmime/tests: Added tests for IDirectMusicPerformance.

2010-08-11 Thread Austin Lund
On 12 August 2010 14:23, Vitaliy Margolen wine-de...@kievinfo.com wrote: On 08/11/2010 09:14 PM, Austin Lund wrote: On 11 August 2010 20:12, David Adamdavid.adam.c...@gmail.com  wrote: I wasn't sure of the best way to do this.  But basically I want to check that the Vtbl had been set.  I

Re: [PATCH 1/2] dmime/tests: Added tests for IDirectMusicPerformance. (try 2)

2010-08-11 Thread Austin Lund
On 12 August 2010 14:32, Vitaliy Margolen wine-de...@kievinfo.com wrote: What are those magic numbers? Please use constants. If they are missing, add them to appropriate header file first. They are the numbers passed to the InitAudio method from bug 22598. I've seen quite a few places where

Re: [PATCH 1/2] dmime/tests: Added tests for IDirectMusicPerformance. (try 2)

2010-08-11 Thread Vitaliy Margolen
On 08/11/2010 11:16 PM, Austin Lund wrote: On 12 August 2010 14:32, Vitaliy Margolenwine-de...@kievinfo.com wrote: What are those magic numbers? Please use constants. If they are missing, add them to appropriate header file first. They are the numbers passed to the InitAudio method from bug

Re: [PATCH 1/2] dmime/tests: Added tests for IDirectMusicPerformance.

2010-08-11 Thread Vitaliy Margolen
On 08/11/2010 11:11 PM, Austin Lund wrote: On 12 August 2010 14:23, Vitaliy Margolenwine-de...@kievinfo.com wrote: On 08/11/2010 09:14 PM, Austin Lund wrote: On 11 August 2010 20:12, David Adamdavid.adam.c...@gmail.comwrote: I wasn't sure of the best way to do this. But basically I want