dexter has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/36851?usp=email )
Change subject: IPA_Tests: fix matching of tr_provideEimPackageResult_ePRAndNotif ......................................................................
IPA_Tests: fix matching of tr_provideEimPackageResult_ePRAndNotif
The template tr_provideEimPackageResult_ePRAndNotif got extended and has now default parameters that break TC_proc_euicc_pkg_dwnld_exec_rollback, so we must set euiccPackageResult to "?" to restore the original conditions of the testcase.
Related: SYS#6563 Change-Id: I1e8c83a317619673cd091da585e44af1a6d8c866 --- M ipad/IPAd_Tests.ttcn 1 file changed, 16 insertions(+), 1 deletion(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-ttcn3-hacks refs/changes/51/36851/1
diff --git a/ipad/IPAd_Tests.ttcn b/ipad/IPAd_Tests.ttcn index 024c502..c5ee412 100644 --- a/ipad/IPAd_Tests.ttcn +++ b/ipad/IPAd_Tests.ttcn @@ -598,7 +598,7 @@ /* Step #10-14 */ esipa_res := valueof(ts_provideEimPackageResultResponse_eimAck(eimAcknowledgements := {1,2,3,4})); esipa_req := f_esipa_transceive(esipa_res); - if (not match(esipa_req, tr_provideEimPackageResult_ePRAndNotif)) { + if (not match(esipa_req, tr_provideEimPackageResult_ePRAndNotif(euiccPackageResult := ?))) { setverdict(fail, "unexpected message from IPAd"); }