jolly has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/42785?usp=email )
Change subject: CCID: Disable set/reset parameter tests ......................................................................
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(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-ttcn3-hacks refs/changes/85/42785/1
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() );