WARN: SCM provider autodetection failed. No SCM provider claims to support this project. Please use sonar.scm.provider to define SCM of your project. ERROR: Unable to parse source file : /home/adieumeg/Documents/Projects/Valencia/workspaces/vhdl_examples/ghdl/ghdl/testsuite/vests/vhdl-93/billowitch/compliant/tc211.vhd ERROR: Parse error at line 35 column 41: 25: -- 26: -- $Id: tc211.vhd,v 1.2 2001-10-26 16:29:45 paw Exp $ 27: -- $Revision: 1.2 $ 28: -- 29: -- --------------------------------------------------------------------- 30: 31: ENTITY c03s01b00x00p09n01i00211ent IS 32: END c03s01b00x00p09n01i00211ent; 33: 34: ARCHITECTURE c03s01b00x00p09n01i00211arch OF c03s01b00x00p09n01i00211ent IS 35: type ascending_range is range 0 to 10 ; ^ 36: type descending_range is range 10 downto 0 ; 37: subtype ascending_subrange is descending_range range 2 to 5 ; 38: subtype descending_subrange is ascending_range range 5 downto 2 ; 39: BEGIN 40: TESTING: PROCESS 41: BEGIN 42: assert NOT((ascending_range'left = 0) and(descending_range'left = 10) and(ascending_subrange'right = 5) and (descending_subrange'right = 2)) 43: report "***PASSED TEST: c03s01b00x00p09n01i00211" 44: severity NOTE; 45: assert ((ascending_range'left = 0) and(descending_range'left = 10) and(ascending_subrange'right = 5) and (descending_subrange'right = 2))