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/tc2078.vhd ERROR: Parse error at line 38 column 5: 28: -- 29: -- --------------------------------------------------------------------- 30: 31: ENTITY c07s02b04x00p20n01i02078ent IS 32: END c07s02b04x00p20n01i02078ent; 33: 34: ARCHITECTURE c07s02b04x00p20n01i02078arch OF c07s02b04x00p20n01i02078ent IS 35: 36: procedure CheckConcat( 37: result : STRING; 38: reference : STRING; ^ 39: left, right : INTEGER 40: ) is 41: variable match : BOOLEAN; 42: begin 43: if result'LENGTH /= reference'LENGTH then 44: assert FALSE report "FAIL: length does not match"; 45: elsif result'LEFT /= left then 46: assert FALSE report "FAIL: 'LEFT is wrong"; 47: elsif result'RIGHT /= right then 48: assert FALSE report "FAIL: 'RIGHT is wrong";