[PATCH] msi/tests: Skip the deferred action test if the process is limited.

Hans Leidekker hans at codeweavers.com
Tue Feb 20 09:20:24 CST 2018


On Tue, 2018-02-20 at 09:03 -0600, Zebediah Figura wrote:
> diff --git a/dlls/msi/tests/install.c b/dlls/msi/tests/install.c
> > index acbf1629a5..7612a00785 100644
> > --- a/dlls/msi/tests/install.c
> > +++ b/dlls/msi/tests/install.c
> > @@ -5924,6 +5924,12 @@ static void test_deferred_action(void)
> >  {
> >      UINT r;
> >  
> > +    if (is_process_limited())
> > +    {
> > +        skip( "process is limited\n" );
> > +        return;
> > +    }
> > +
> >      create_database(msifile, da_tables, sizeof(da_tables) / sizeof(da_tables[0]));
> >  
> >      MsiSetInternalUI(INSTALLUILEVEL_NONE, NULL);
> > 
> 
> I've sent a patch that fixes this so it works while limited instead.
> Hopefully that will be preferable.

Yes, that's better. Thanks.




More information about the wine-devel mailing list