Commit 60fb96fb authored by berge's avatar berge
Browse files

Fixed f_utInitializeIut functions

parent 86f7bc1e
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -19,9 +19,9 @@
         * @desc Brings the IUT into an initial state.
         * @return 
         */
        function f_prInitialState() {
        function f_prInitialState() runs on ItsNt {
            
            f_utInitialzeIUT();
            f_utInitializeIut();
            
            setverdict(pass);
        }
@@ -35,7 +35,7 @@
         * @desc    Requests to bring the IUT in an initial state
         * @return 
         */
        function f_utInitialzeIUT() runs on ItsNt {
        function f_utInitializeIut() runs on ItsNt {
            
            utPort.send(UtBtpInitialize:{});
            tc_ac.start;
@@ -60,7 +60,7 @@
         * @param   p_event The event to trigger.
         * @return 
         */
        function f_utTriggerEvent(template (value) UtBtpEvent p_event) runs on ItsFa return FncRetCode {
        function f_utTriggerEvent(template (value) UtBtpEvent p_event) runs on ItsNt return FncRetCode {
            var FncRetCode v_ret := e_success;
            var template (value) UtBtpTrigger v_utMsg := { p_event };
            
@@ -74,7 +74,7 @@
         * @param p_event The event to check.
         * @return 
         */
        function f_utCheckEvent(template (value) UtBtpEvent p_event) runs on ItsFa return FncRetCode {
        function f_utCheckEvent(template (value) UtBtpEvent p_event) runs on ItsNt return FncRetCode {
            var FncRetCode v_ret := e_success;
            var template (value) UtBtpCheck v_utMsg := { p_event };
            
+2 −2
Original line number Diff line number Diff line
@@ -100,7 +100,7 @@ module LibItsDenm_Functions {
            
            f_prDefault();
            
            f_utInitialzeIUT();
            f_utInitializeIut();
            
            f_setVerdictPreOrPostamble(v_ret);
            
@@ -156,7 +156,7 @@ module LibItsDenm_Functions {
         * @desc    Requests to bring the IUT in an initial state
         * @return 
         */
        function f_utInitialzeIUT() runs on ItsNt {
        function f_utInitializeIut() runs on ItsFa {
            
            utPort.send(UtDenmInitialize:{});
            tc_ac.start;
+3 −3
Original line number Diff line number Diff line
@@ -836,9 +836,9 @@ module LibItsGeoNetworking_Functions {
         * @desc Brings the IUT into an initial state.
         * @return 
         */
        function f_prInitialState() {
        function f_prInitialState() runs on ItsNt {
            
            f_utInitialzeIUT();
            f_utInitializeIut();
            
            setverdict(pass);
        }
@@ -933,7 +933,7 @@ module LibItsGeoNetworking_Functions {
         * @desc    Requests to bring the IUT in an initial state
         * @return 
         */
        function f_utInitialzeIUT() runs on ItsNt {
        function f_utInitializeIut() runs on ItsNt {
            
            utPort.send(UtGNInitialize:{});
            tc_ac.start;