jolly submitted this change.

View Change

Approvals: laforge: Looks good to me, approved Jenkins Builder: Verified
CCID: Disable set/reset parameter tests

These tests are currently not supported by octsim, so they are disabled.

Change-Id: Iebcfe05742d53941f2cbc758c2414d4372068a61
---
M ccid/CCID_Tests.ttcn
1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/ccid/CCID_Tests.ttcn b/ccid/CCID_Tests.ttcn
index e650f37..d158f64 100644
--- a/ccid/CCID_Tests.ttcn
+++ b/ccid/CCID_Tests.ttcn
@@ -20,6 +20,7 @@
USB_Device_Match mp_usb_dev_match := { vid_pid := { vid := '1d50'H, pid := '6141'H } };
integer mp_use_slot_count := 8;
boolean mp_test_power_off := true;
+ boolean mp_test_set_params := false;
boolean mp_quirk_resetpar_returns_slotsts := false;
}
/* global test component; manages CCID device */
@@ -464,8 +465,10 @@
}
execute( TC_select_mf() );
execute( TC_get_params() );
- execute( TC_set_params() );
- execute( TC_reset_params() );
+ if (mp_test_set_params) {
+ execute( TC_set_params() );
+ execute( TC_reset_params() );
+ }

/* error handling */
execute( TC_inval_slot() );

To view, visit change 42785. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-MessageType: merged
Gerrit-Project: osmo-ttcn3-hacks
Gerrit-Branch: master
Gerrit-Change-Id: Iebcfe05742d53941f2cbc758c2414d4372068a61
Gerrit-Change-Number: 42785
Gerrit-PatchSet: 2
Gerrit-Owner: jolly <andreas@eversberg.eu>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: jolly <andreas@eversberg.eu>
Gerrit-Reviewer: laforge <laforge@osmocom.org>