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/tc1574.vhd ERROR: Parse error at line 41 column 7: 31: ENTITY c08s10b00x00p04n01i01574ent IS 32: END c08s10b00x00p04n01i01574ent; 33: 34: ARCHITECTURE c08s10b00x00p04n01i01574arch OF c08s10b00x00p04n01i01574ent IS 35: 36: BEGIN 37: TESTING: PROCESS 38: variable k : integer := 0; 39: BEGIN 40: L : for i in 1 to 10 loop 41: next L when i > 5; ^ 42: k := k + 1; 43: end loop; 44: assert NOT( k=5 ) 45: report "***PASSED TEST: c08s10b00x00p04n01i01574" 46: severity NOTE; 47: assert ( k=5 ) 48: report "***FAILED TEST: c08s10b00x00p04n01i01574 - The current iteration of the loop is terminated if the value of the condition is TRUE" 49: severity ERROR; 50: wait; 51: END PROCESS TESTING;