laforge has submitted this change. (
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(-)
Approvals:
pespin: Looks good to me, but someone else must approve
Jenkins Builder: Verified
laforge: Looks good to me, approved
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");
}
--
To view, visit
https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/36851?usp=email
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-ttcn3-hacks
Gerrit-Branch: master
Gerrit-Change-Id: I1e8c83a317619673cd091da585e44af1a6d8c866
Gerrit-Change-Number: 36851
Gerrit-PatchSet: 1
Gerrit-Owner: dexter <pmaier(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: laforge <laforge(a)osmocom.org>
Gerrit-Reviewer: pespin <pespin(a)sysmocom.de>
Gerrit-MessageType: merged