Re: [PATCH v2 0/1] MR772: tests: Allow marking unreliable tests as flaky.
2 Sep
2022
2 Sep
'22
1:16 p.m.
Huw Davies (@huw) commented about include/wine/test.h:
va_end(valist); }
+void winetest_start_flaky( int is_flaky ) +{ + struct tls_data *data = get_tls_data(); + data->flaky_level = (data->flaky_level << 1) | (is_flaky != 0); + data->flaky_do_loop=1;
Could we have spaces on either side of the '=', just like the lines above? I realise this is copied from the 'todo' functions, but still. Similarly, two instances below. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/772#note_7560
1202
Age (days ago)
1202
Last active (days ago)
0 comments
1 participants
participants (1)
-
Huw Davies (@huw)