pcu: move f_pcuif_tx() to PCU_Tests_RAW as it runs on RAW_PCU_CT

Change-Id: Ic60a7fc657df17ff2d3a889501f0576b98f1f4ad
This commit is contained in:
Harald Welte 2019-03-21 21:30:21 +01:00
parent f12b5a412d
commit 0466d16d42
2 changed files with 4 additions and 4 deletions

View File

@ -73,6 +73,10 @@ function f_init_pcuif() runs on RAW_PCU_CT {
PCU.send(t_SD_PCUIF(g_pcu_conn_id, info_ind));
}
function f_pcuif_tx(template (value) PCUIF_Message msg) runs on RAW_PCU_CT {
PCU.send(t_SD_PCUIF(g_pcu_conn_id, msg));
}
function f_init_ns_codec(integer idx := 0, float guard_secs := 60.0) runs on RAW_NS_CT {
var Result res;

View File

@ -354,10 +354,6 @@ testcase TC_sns_chg_weight() runs on RAW_Test_CT {
import from PCUIF_Types all;
import from PCUIF_CodecPort all;
private function f_pcuif_tx(template (value) PCUIF_Message msg) runs on RAW_PCU_CT {
PCU.send(t_SD_PCUIF(g_pcu_conn_id, msg));
}
altstep as_pcu_activate() runs on RAW_PCU_CT {
var PCUIF_send_data sd;
[] PCU.receive(t_SD_PCUIF(g_pcu_conn_id, tr_PCUIF_ACT_REQ(?, ?, ?))) -> value sd { repeat; }