Re: shell32/tests: Fix Program Manager DDE Conformance Test Failures

2009-11-17 Thread Mikey Alexander
--- On Tue, 11/17/09, Paul Vriens wrote: > From: Paul Vriens > Subject: Re: shell32/tests: Fix Program Manager DDE Conformance Test Failures > To: "Mikey Alexander" > Cc: "'wine-devel@winehq.org'" > Date: Tuesday, November 17, 2009, 6:26 AM

Re: shell32/tests: Fix Program Manager DDE Conformance Test Failures

2009-11-17 Thread Paul Vriens
On 11/17/2009 03:26 PM, Paul Vriens wrote: On 11/17/2009 10:10 AM, Paul Vriens wrote: On 11/14/2009 05:31 PM, Mikey Alexander wrote: /* Timeout on DdeClientTransaction Call */ #define MS_TIMEOUT_VAL 1000 /* # of times to poll for window creation */ -#define PDDE_POLL_NUM 50 +#define PDDE_POLL_N

Re: shell32/tests: Fix Program Manager DDE Conformance Test Failures

2009-11-17 Thread Paul Vriens
On 11/17/2009 10:10 AM, Paul Vriens wrote: On 11/14/2009 05:31 PM, Mikey Alexander wrote: /* Timeout on DdeClientTransaction Call */ #define MS_TIMEOUT_VAL 1000 /* # of times to poll for window creation */ -#define PDDE_POLL_NUM 50 +#define PDDE_POLL_NUM 150 /* time to sleep between polls */ -#d

Re: shell32/tests: Fix Program Manager DDE Conformance Test Failures

2009-11-17 Thread Paul Vriens
On 11/14/2009 05:31 PM, Mikey Alexander wrote: /* Timeout on DdeClientTransaction Call */ #define MS_TIMEOUT_VAL 1000 /* # of times to poll for window creation */ -#define PDDE_POLL_NUM 50 +#define PDDE_POLL_NUM 150 /* time to sleep between polls */ -#define PDDE_POLL_TIME 200 +#define PD

Re: shell32/tests: Fix Program Manager DDE Conformance Test Failures

2009-11-15 Thread Nicolas Le Cam
2009/11/15 Mikey Alexander : > You really don't want to skip this one as the api is supposed to create the > window, but you can't be absolutely sure it is a failure, hence the error > message being what it is.  If you are going to skip the timeout if it fails, > why bother checking for the wind

Re: shell32/tests: Fix Program Manager DDE Conformance Test Failures

2009-11-15 Thread Mikey Alexander
ake that much longer. - Mikey --- On Sat, 11/14/09, Nicolas Le Cam wrote: > From: Nicolas Le Cam > Subject: Re: shell32/tests: Fix Program Manager DDE Conformance Test Failures > To: wine-devel@winehq.org > Cc: fireswor...@yahoo.com > Date: Saturday, November 14, 2009, 9

Re: shell32/tests: Fix Program Manager DDE Conformance Test Failures

2009-11-14 Thread Nicolas Le Cam
2009/11/14 Mikey Alexander : > Fixes a memory leak, non connection to the progman dde on early windows, and > timeout problems with the conformance tests. > > --- >  dlls/shell32/tests/progman_dde.c |   25 + >  1 files changed, 17 insertions(+), 8 deletions(-) > Hi Mikey,