ns2: add a dummy test case TC_idle() for manual test cases

The TC_idle() won't be call by the control as this TC is only intended for manual
human based testing.

Change-Id: Ie1b5936447755dcaebd65396b7bb5cc3f31c17b5
This commit is contained in:
Alexander Couzens 2021-07-12 18:15:42 +02:00 committed by lynxis lazus
parent 31f815033d
commit 5eeebaa974
1 changed files with 16 additions and 0 deletions

View File

@ -676,6 +676,22 @@ testcase TC_sns_bss_all_signalling_nsvcs_failed() runs on RAW_Test_CT {
f_clean_ns_codec();
}
testcase TC_idle() runs on RAW_Test_CT {
f_init_vty();
f_init_ns_codec(mp_nsconfig, guard_secs := 30.0);
/* do a NS Reset procedure */
f_outgoing_ns_reset();
activate(as_rx_alive_tx_ack());
f_outgoing_ns_unblock();
f_sleep(30.0);
setverdict(pass);
f_sleep(1.0);
f_clean_ns_codec();
}
control {
if (mp_dialect == NS2_DIALECT_STATIC_RESETBLOCK or mp_dialect == NS2_DIALECT_IPACCESS) {
execute( TC_tx_reset() );