From: Andreas Schneider Date: Thu, 18 Jul 2019 12:18:57 +0000 (+0200) Subject: s4:torture: Print account and authority name X-Git-Tag: ldb-2.2.0~842 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9596eefbd5e7fe7fab8384656eb302fec7a8d355;p=thirdparty%2Fsamba.git s4:torture: Print account and authority name Signed-off-by: Andreas Schneider Reviewed-by: Stefan Metzmacher Reviewed-by: Guenther Deschner --- diff --git a/source4/torture/rpc/lsa.c b/source4/torture/rpc/lsa.c index 548ebf8a090..c342b4e67e6 100644 --- a/source4/torture/rpc/lsa.c +++ b/source4/torture/rpc/lsa.c @@ -4914,6 +4914,11 @@ static bool test_GetUserName(struct dcerpc_binding_handle *b, torture_assert_not_null(tctx, r.out.authority_name, "r.out.authority_name"); torture_assert_not_null(tctx, *r.out.authority_name, "*r.out.authority_name"); + torture_comment(tctx, + "Account Name: %s, Authority Name: %s\n", + (*r.out.account_name)->string, + (*r.out.authority_name)->string); + return true; }