[PATCH 2/5] msi/tests: Test deferral of MsiPublishAssemblies and MsiUnpublishAssemblies.

Zebediah Figura z.figura12 at gmail.com
Thu May 24 08:14:12 CDT 2018


On 24/05/18 03:10, Hans Leidekker wrote:
> If I add braces:
> 
> UINT __attribute__((__stdcall__)) __attribute__((__force_align_arg_pointer__)) pa_present(MSIHANDLE hinst)
> {
> ...
> for (winetest_start_todo(!MsiGetMode(hinst, MSIRUNMODE_SCHEDULED)); winetest_loop_todo(); winetest_end_todo()) {
>     check_reg_str(hinst, key, name_dotnet, "rcHQPHq?CA at Uv-XqMI1e>Z'q,T*76M@=YEg6My?~]");
> }
>     RegCloseKey(key);
> 
> or if I indent like this:
> 
> UINT __attribute__((__stdcall__)) __attribute__((__force_align_arg_pointer__)) pa_present(MSIHANDLE hinst)
> {
> ...
>     for (winetest_start_todo(!MsiGetMode(hinst, MSIRUNMODE_SCHEDULED)); winetest_loop_todo(); winetest_end_todo())
>         check_reg_str(hinst, key, name_dotnet, "rcHQPHq?CA at Uv-XqMI1e>Z'q,T*76M@=YEg6My?~]");
>     RegCloseKey(key);}
> 
> the warning goes away. Does that answer your question?
> 
> 
> 

Sure, I understand that part, but I don't understand why no similar
warning appears with the todo_wine macro from wine/test.h.



More information about the wine-devel mailing list