Skip to content
Snippets Groups Projects
Commit 29435c77 authored by acverdugo's avatar acverdugo
Browse files

Small fixes for unblocking execution of some Test Cases

parent da136c8e
No related branches found
No related tags found
No related merge requests found
......@@ -101,7 +101,7 @@ module OneM2M_Functions {
vc_aeSimu := AeSimu.create("AE1") alive;
// Map
map(self:mccPort, system:mcaPort);
map(self:mccPort, system:mccPort);
map(vc_aeSimu:mcaPort, system:mcaPort);
map(self:acPort, system:acPort);
activate(a_default());
......@@ -1365,7 +1365,7 @@ module OneM2M_Functions {
v_request := f_getCreateRequestPrimitive(int16, p_requestPrimitive, -1);
mcaPort.send(m_request(v_request));
mccPort.send(m_request(v_request));
tc_ac.start;
alt {
[] mccPort.receive(mw_response(mw_responsePrimitiveOK)) -> value v_response {
......@@ -2409,10 +2409,11 @@ module OneM2M_Functions {
f_cse_postamble_deleteResourcesCSE();
if(vc_config == e_cf03) {
f_cf03Down();
stop;
} else if (vc_config ==e_cf04) {
f_cf04Down();
stop;
}
stop;
}
}
......
......@@ -1249,6 +1249,7 @@ module OneM2M_Testcases {
v_createRequest.primitiveContent.remoteCSE.pointOfAccess := {"http://" & PX_CSE1_ADDRESS & "/"};
v_cse1.start(f_CSE_REG_CRE_016(v_createRequest, c_optionalAttribute));
v_cse1.done;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment