Hi Anderson, > This is made possible by adding the mtu parameter, given > /TP/SERVER/BRW/* tests use MTU of 672. > --- > unit/test-sdp.c | 24 ++++++------------------ > 1 file changed, 6 insertions(+), 18 deletions(-) > > diff --git a/unit/test-sdp.c b/unit/test-sdp.c > index 315a5cd..e9cbcdf 100644 > --- a/unit/test-sdp.c > +++ b/unit/test-sdp.c > @@ -68,34 +68,22 @@ struct test_data { > .cont_len = cont, \ > } > > -#define define_test(name, args...) \ > +#define define_test(name, _mtu, args...) \ > do { \ > const struct sdp_pdu pdus[] = { \ > args, { }, { } \ > }; \ > static struct test_data data; \ > - data.mtu = 48; \ > + data.mtu = _mtu; \ so using _mtu instead of mtu was the trick here. For the heck of it I could not figure that one out. So in the end I gave up on it and hardcoded it :( Patch has been applied. Regards Marcel -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html