Commit 33eb1733 authored by zeiss's avatar zeiss
Browse files

reordered modules for the module name checker script.

parent 6e6198c0
Loading
Loading
Loading
Loading
+6 −4
Original line number Diff line number Diff line
@@ -4,9 +4,6 @@
 ** @purpose  1:5.2, Ensure that the IUT correctly handles the uniqueness of variable names in its scope
 ** @verdict  pass reject
 ***************************************************/
module NegSem_050202_Uniqueness_012_import {
    const integer repeatedIdentifier := 0; 	    
}

module NegSem_050202_Uniqueness_012 {
	import from NegSem_050202_Uniqueness_012_import {
@@ -27,3 +24,8 @@ module NegSem_050202_Uniqueness_012 {
		execute(TC_NegSem_050202_Uniqueness_012());
	}
}

module NegSem_050202_Uniqueness_012_import {
    const integer repeatedIdentifier := 0; 	    
}
 
 No newline at end of file
+4 −3
Original line number Diff line number Diff line
@@ -4,9 +4,6 @@
 ** @purpose  1:5.2, Ensure that the IUT correctly handles the uniqueness of variable names in its scope
 ** @verdict  pass reject
 ***************************************************/
module NegSem_050202_Uniqueness_013_import {
    const integer c_integer := 0; 	    
}
 
module NegSem_050202_Uniqueness_013 {
	import from NegSem_050202_Uniqueness_013_import { const all; }
@@ -25,3 +22,7 @@ module NegSem_050202_Uniqueness_013 {
		execute(TC_NegSem_050202_Uniqueness_013());
	}
}

module NegSem_050202_Uniqueness_013_import {
    const integer c_integer := 0; 	    
}
+5 −5
Original line number Diff line number Diff line
@@ -5,11 +5,6 @@
 ** @verdict  pass accept, ttcn3verdict:pass
 ***************************************************/

module Sem_0505_cyclic_definitions_002_import { 
   import from Sem_0505_cyclic_definitions_002 { type MyInteger } 
   type record of MyInteger MyIntegerList; 
} 
 
module Sem_0505_cyclic_definitions_002 { 
   type integer MyInteger; 
   import from Sem_0505_cyclic_definitions_002_import { type MyIntegerList } 
@@ -34,3 +29,8 @@ control{
}

}

module Sem_0505_cyclic_definitions_002_import { 
   import from Sem_0505_cyclic_definitions_002 { type MyInteger } 
   type record of MyInteger MyIntegerList; 
}