Commit 46bce12e authored by berge's avatar berge
Browse files

Fixed namin convention violations (STF320/Mantis#357)

parent a004da5c
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -397,7 +397,7 @@ module AtsIpv6_Common_Functions {
	 * @param	p_paramsIut Address Information of Node Under Test
	 * @param	p_paramsTn Address Information of Testing Node
	*/
	function f_expectNoBABE( template Ipv6NodeParams p_paramsIut, template Ipv6NodeParams p_paramsTn)
	function f_expectNoBaAndNoBe( template Ipv6NodeParams p_paramsIut, template Ipv6NodeParams p_paramsTn)
	runs on Ipv6Node
    return FncRetCode {
		//Variables
@@ -486,6 +486,6 @@ module AtsIpv6_Common_Functions {

		return v_ret;

	} // end f_expectNoBABE
	} // end f_expectNoBaAndNoBe

} // end module AtsIpv6_Common_Functions
+4 −4
Original line number Diff line number Diff line
@@ -1407,7 +1407,7 @@
			// in the case of MN (returning Home): TTCN replies, otherwise MN would not know that it's home
			
			// Comment 3:
			// Added to be able to receive DAD NS for MN01's HoA sent by HA under test
			// Added to be able to receive DAD NS for MN01's Hoa sent by HA under test
			
			v_cfMsg.paramsHs01 := v_paramsHs01; 
			v_cfMsg.paramsHs02 := f_createParamsHs02(PX_MAC_UCA_RT01_A, true); 
@@ -2051,7 +2051,7 @@
	 	 * @param p_ipv6NodeRef2 Reference to second IPv6 test component
	 	 * @param p_ipv6UtcRef Reference to Upper Tester Client test component
		*/
		function f_cf2PtcsUtDown(	in Ipv6Node p_ipv6NodeRef1,
		function f_cfTwoPtcsUtDown(	in Ipv6Node p_ipv6NodeRef1,
									in Ipv6Node p_ipv6NodeRef2,
									in Ipv6Utc p_ipv6UtcRef )
		runs on ServerSyncComp {
@@ -2078,11 +2078,11 @@
				unmap(p_ipv6UtcRef:scopPort, system:scopXPort) ;
			}
			else {
				log("**** f_cf2PtcsUtDown: Error with Pixit PX_MAC_LAYER ****") ;
				log("**** f_cfTwoPtcsUtDown: Error with Pixit PX_MAC_LAYER ****") ;
				v_ret := e_error;	
			}
			f_setVerdict(v_ret);
		}//end f_cf2PtcsUtDown
		}//end f_cfTwoPtcsUtDown
	
	}//end group cfDown

+80 −88

File changed.

Preview size limit exceeded, changes collapsed.

+3 −3
Original line number Diff line number Diff line
@@ -94,7 +94,7 @@ module AtsIpv6_GenerateIpv6Packets_Testcases {
				f_PR_tn_nut(v_cfMsg, e_cleanGla, v_cfMsg.paramsRt01, v_cfMsg.paramsIut);

				// test body
				f_TP_PmtuDiscovery_smallerValue(
				f_TP_pmtuDiscovery_smallerValue(
					v_cfMsg.paramsRt01,
					v_cfMsg.paramsIut);

@@ -124,7 +124,7 @@ module AtsIpv6_GenerateIpv6Packets_Testcases {
				f_PR_tn_nut(v_cfMsg, e_cleanGla, v_cfMsg.paramsRt01, v_cfMsg.paramsIut);

				// test body
				f_TP_PmtuDiscovery_lessThanMinimum(
				f_TP_pmtuDiscovery_lessThanMinimum(
					v_cfMsg.paramsRt01,
					v_cfMsg.paramsIut);

@@ -154,7 +154,7 @@ module AtsIpv6_GenerateIpv6Packets_Testcases {
				f_PR_tn_nut(v_cfMsg, e_cleanGla, v_cfMsg.paramsRt01, v_cfMsg.paramsIut);

				// test body
				f_TP_PmtuDiscovery_greaterValue(
				f_TP_pmtuDiscovery_greaterValue(
					v_cfMsg.paramsRt01,
					v_cfMsg.paramsIut);

+2 −2
Original line number Diff line number Diff line
@@ -868,7 +868,7 @@ module AtsIpv6_Icmpv6Functions_Testcases {
				f_PR_tn_nut(v_cfMsg, e_cleanGla, v_cfMsg.paramsRt01, v_cfMsg.paramsIut);

				// test body
				f_TP_generationOfTimExceeded_hopLimit(
				f_TP_generationOfTimeExceeded_hopLimit(
					v_cfMsg.paramsRt01,
					v_cfMsg.paramsIut,
					c_hopLimit0,
@@ -900,7 +900,7 @@ module AtsIpv6_Icmpv6Functions_Testcases {
				f_PR_tn_nut(v_cfMsg, e_cleanGla, v_cfMsg.paramsRt01, v_cfMsg.paramsIut);

				// test body
				f_TP_generationOfTimExceeded_hopLimit(
				f_TP_generationOfTimeExceeded_hopLimit(
					v_cfMsg.paramsRt01,
					v_cfMsg.paramsIut,
					c_hopLimit1,
Loading