pespin has submitted this change. ( https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/35365?usp=email )
Change subject: LTE_CryptoFunctions.ttcn: Log NAS_UE_State on failure ......................................................................
LTE_CryptoFunctions.ttcn: Log NAS_UE_State on failure
Change-Id: Ib95d496f06f07f4c28d9b08b6a8059d8453e8acd --- M mme/LTE_CryptoFunctions.ttcn 1 file changed, 10 insertions(+), 1 deletion(-)
Approvals: fixeria: Looks good to me, approved Jenkins Builder: Verified
diff --git a/mme/LTE_CryptoFunctions.ttcn b/mme/LTE_CryptoFunctions.ttcn index dee0f22..9923541 100644 --- a/mme/LTE_CryptoFunctions.ttcn +++ b/mme/LTE_CryptoFunctions.ttcn @@ -145,7 +145,7 @@ f_rx_is_downlink(nus), data_with_seq); if (exp_mac != secp_nas.messageAuthenticationCode) { setverdict(fail, "Received NAS MAC ", secp_nas.messageAuthenticationCode, - " doesn't match expected MAC ", exp_mac, ": ", secp_nas); + " doesn't match expected MAC ", exp_mac, ": ", secp_nas, " | nus: ", nus); return false; } return true;