25 Jun
2021
25 Jun
'21
9:05 a.m.
On Fri, Jun 25, 2021 at 10:26:11AM +0200, Rémi Bernon wrote:
On 6/25/21 10:20 AM, Huw Davies wrote:
+ ok( bounded( row->OutUcastOctets, dyn->out_ucast_octs, dyn_2->out_ucast_octs ), "%d: mismatch\n", i ); + ok( bounded( row->OutMulticastOctets, dyn->out_mcast_octs, dyn_2->out_mcast_octs ), "%d: mismatch\n", i ); + ok( bounded( row->OutBroadcastOctets, dyn->out_bcast_octs, dyn_2->out_bcast_octs ), "%d: mismatch\n", i ); + /* OutQLen */ + } +
FWIW we have a nice winetest_push_context / winetest_pop_context which saves the day in cases like this to prepend loop index on all messages.
Yes we do, good point! I'll send in a new version using that. Huw.