Commit 7c1e2c1d authored by garciay's avatar garciay
Browse files

Terminate BR TCs

parent c4a2d792
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -19,7 +19,7 @@ module Ats6RD_Pics {
    modulepar boolean PICS_ROLE_IS_BR := false;
    
    /**
     * @desc Does the IUT support port range conifguration?
     * @desc Does the IUT support port range configuration?
     */
    modulepar boolean PICS_PORT_RANGE := false;
    
+1 −1
Original line number Diff line number Diff line
@@ -468,7 +468,7 @@ module AtsCommon_Templates {
                t1                      := ?,
                t2                      := ?,
                iA_NA_options           := ?
            } // End of template mw_dhcpv6_optionRequestOption_dummy
            } // End of template mw_dhcpv6_ia_na_dummy
            
            /**
             * @desc Genercic receive DHCPv6 ORO option
+0 −4
Original line number Diff line number Diff line
@@ -161,10 +161,6 @@ module AtsMapE_Functions {
                log("*** " & __SCOPE__ & "ERROR: Timeout while awaiting the reception of a message ***");
                f_selfOrClientSyncAndVerdict("error", e_timeout);
            }
            [] tc_noac.timeout {
                log("*** " & __SCOPE__ & "ERROR: Timeout while awaiting the reception of a message ***");
                f_selfOrClientSyncAndVerdict("error", e_timeout);
            }
            [] any timer.timeout {
                log("*** " & __SCOPE__ & "ERROR: Timeout while awaiting the reception of a message ***");
                f_selfOrClientSyncAndVerdict("error", e_timeout);
+4 −2
Original line number Diff line number Diff line
@@ -23,6 +23,10 @@ module AtsMapE_Interfaces {
    group mtcDesc {
        
        type component MapEComponent extends UtComponent, LibIpv6Node {
            /** DHCPv6 port for DHCPv6Msg message exchanges */
            port DHCPv6Port dhcpv6Port;
            /** DHCPv6 component reference */
            var DHCPv6Component vc_dhcpv6Component := null;
            /** xLAT component reference */
            var BRComponents vc_brComponents := null;
            /** Host component reference */
@@ -53,8 +57,6 @@ module AtsMapE_Interfaces {
             * @desc 
             */
            type component BRComponent extends UtComponent, LibIpv6Node, SelfSyncComp {
                /** Timer used for unexpected received message */
                timer tc_noac:= PX_TNOAC;
            } // End of component BRComponent
            
            type component HostHTTPComponent extends UtComponent, SelfSyncComp {
+8 −3
Original line number Diff line number Diff line
@@ -6,13 +6,18 @@
module AtsMapE_Pics {
    
    /**
     * @desc The SUT is the CLAT equipment
     * @desc The SUT is the CLAT equipment?
     */
    modulepar boolean PICS_ROLE_IS_BR := false;
    
    /**
     * @desc The SUT is the PLAT equipment
     * @desc The SUT is the CPE equipment?
     */
    modulepar boolean PICS_ROLE_IS_PLAT := false;
    modulepar boolean PICS_ROLE_IS_CPE := false;
    
    /**
     * @desc Does the IUT support port range configuration?
     */
    modulepar boolean PICS_PORT_RANGE := false;
    
} // End of module AtsMapE_Pics
 No newline at end of file
Loading