Commit 026ecd43 authored by mogos's avatar mogos
Browse files

logging the expected value for f_expectFeedback

parent b59633c7
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -290,7 +290,7 @@ module LibItsECall_Functions {
     * @param  p_ignoreOtherMessages    Whether other events shall be ignored or not
     * @return FeedbackResult           Received event if reception is successful, or failure
     */
    function f_expectFeedback(template Event p_e, float p_event_timeout := PX_TIMEOUT, in boolean p_ignoreOtherMessages := false) runs on ECallMtc return ExpectResult {
    function f_expectFeedback(template Event p_e, float p_event_timeout := PX_TIMEOUT, in boolean p_ignoreOtherMessages := false) runs on PsapMtc return ExpectResult {
        timer t := p_event_timeout;
        var Event v_received;
        var ExpectResult v_result;
@@ -313,6 +313,7 @@ module LibItsECall_Functions {

            [] t.timeout {
                v_result.failure := true;
                log("Expecting", p_e);
                f_stopIvsTestcase(inconc, "Timeout!");
            }
        }