Commit a1acf182 authored by tepelmann's avatar tepelmann
Browse files

Fixed compilation problems.

Calling f_selfOrClientSyncAndVerdict is now commented and needs to be checked!
parent 120190f6
Loading
Loading
Loading
Loading
+18 −10
Original line number Diff line number Diff line
@@ -3202,7 +3202,7 @@ module LibSip_Steps {
                    f_setHeadersOnReceiptOfResponse(vc_response);
                    v_received_OK := true;
                    setverdict(pass);
                    if (not (received_NOTIFY)) {
                    if (not (v_received_NOTIFY)) {
                        repeat;
                    }
                }
@@ -3213,7 +3213,7 @@ module LibSip_Steps {
                    // Answer to the NOTIFY
                    f_send200OK();
                    v_received_NOTIFY := true;
                    if (not (received_OK)) {
                    if (not (v_received_OK)) {
                        repeat;
                    }
                }
@@ -3967,7 +3967,8 @@ module LibSip_Steps {
            // != pass does not work, because in case of "none" execution shall continue
            if (getverdict == inconc or getverdict == fail) {
                log("*** f_check2Null: INFO: Verdict evaluated to fail or inconc. Stopping test execution now ***");
                f_selfOrClientSyncAndVerdict(p_syncPoint, e_error);
                //TODO Check this!!! The function call cannot be used as the function f_check2Null runs on SipComponent
                //f_selfOrClientSyncAndVerdict(p_syncPoint, e_error);
            } // end if
        }

@@ -4455,7 +4456,8 @@ module LibSip_Steps {
                };
            }

            f_selfOrClientSyncAndVerdict(c_uPlane, f_getVerdict()); // Note: implemented in test bodies
            //TODO Check this!!! The function call cannot be used as the function f_check2Null runs on SipComponent
            //f_selfOrClientSyncAndVerdict(c_uPlane, f_getVerdict()); // Note: implemented in test bodies
            return;
        } // end of f_check_Conversation

@@ -4503,7 +4505,8 @@ module LibSip_Steps {
                };
            }

            f_selfOrClientSyncAndVerdict(c_Ringing, f_getVerdict());
            //TODO Check this!!! The function call cannot be used as the function f_check2Null runs on SipComponent
            //f_selfOrClientSyncAndVerdict(c_Ringing, f_getVerdict());
            return;
        } // end of f_check_Ringing

@@ -4551,7 +4554,8 @@ module LibSip_Steps {
                };
            }

            f_selfOrClientSyncAndVerdict(c_annoucA, f_getVerdict());
            //TODO Check this!!! The function call cannot be used as the function f_check2Null runs on SipComponent
            //f_selfOrClientSyncAndVerdict(c_annoucA, f_getVerdict());
            return;
        } // end of f_check_AnnouncementUE_A

@@ -4599,7 +4603,8 @@ module LibSip_Steps {
                };
            }

            f_selfOrClientSyncAndVerdict(c_annoucB, f_getVerdict());
            //TODO Check this!!! The function call cannot be used as the function f_check2Null runs on SipComponent
            //f_selfOrClientSyncAndVerdict(c_annoucB, f_getVerdict());
            return;
        } // end of f_check_AnnouncementUE_B

@@ -4647,7 +4652,8 @@ module LibSip_Steps {
                };
            }

            f_selfOrClientSyncAndVerdict(c_annouc, f_getVerdict());
            //TODO Check this!!! The function call cannot be used as the function f_check2Null runs on SipComponent
            //f_selfOrClientSyncAndVerdict(c_annouc, f_getVerdict());
            return;
        } // end of f_check_Announcement

@@ -4695,7 +4701,8 @@ module LibSip_Steps {
                };
            }

            f_selfOrClientSyncAndVerdict(c_voicem, f_getVerdict());
            //TODO Check this!!! The function call cannot be used as the function f_check2Null runs on SipComponent
            //f_selfOrClientSyncAndVerdict(c_voicem, f_getVerdict());
            return;
        } // end of f_check_Announcement

@@ -4743,7 +4750,8 @@ module LibSip_Steps {
                };
            }

            f_selfOrClientSyncAndVerdict(c_uPlaneStop, f_getVerdict());
            //TODO Check this!!! The function call cannot be used as the function f_check2Null runs on SipComponent
            //f_selfOrClientSyncAndVerdict(c_uPlaneStop, f_getVerdict());
            return;
        } // end of f_check_MediaStopped

+1 −1
Original line number Diff line number Diff line
@@ -4520,7 +4520,7 @@ module LibSip_Templates {
            function f_recordroute(
            ) runs on SipComponent 
            return template(omit) RecordRoute {
                var template RecordRoute v_recordRoute := omit;
                var template(omit) RecordRoute v_recordRoute := omit;
                if (vc_boo_recordRoute) {
                    return vc_recordRoute;
                }