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/tc1690.vhd ERROR: Parse error at line 38 column 45: 28: -- 29: -- --------------------------------------------------------------------- 30: 31: ENTITY c09s02b00x00p03n01i01690ent IS 32: END c09s02b00x00p03n01i01690ent; 33: 34: ARCHITECTURE c09s02b00x00p03n01i01690arch OF c09s02b00x00p03n01i01690ent IS 35: 36: BEGIN 37: TESTING: PROCESS 38: type bus_idx is range 0 to 63; ^ 39: subtype cmd_idx is bus_idx range 0 to 7; 40: variable v : cmd_idx := 5; 41: variable untrue : boolean := false; 42: BEGIN 43: assert NOT(v=5 and untrue = false) 44: report "***PASSED TEST: c09s02b00x00p03n01i01690" 45: severity NOTE; 46: assert (v=5 and untrue = false) 47: report "***FAILED TEST: c09s02b00x00p03n01i01690 - Configuration declarations are not permitted in process statement." 48: severity ERROR;