Skip to content

Latest commit

 

History

History
43 lines (29 loc) · 1.3 KB

BUGS.org

File metadata and controls

43 lines (29 loc) · 1.3 KB

List of known bugs for RTLIB 2.0

Instruction parser fails silently

  • State “ASSIGNED” from “OPEN” [2017-04-06 jeu. 13:45]
    Giuseppe Lipari
  • State “OPEN” from [2017-04-06 jeu. 13:44]

For example, if the programmer forgets the final ; after and instruction, the instruction object is not created

Example:

t.addInstr("raise_thres(1);fixed(2);lower_thres(1)");

it will not create lower_thres

Instruction parser fails when instruction has no arguments

  • State “ASSIGNED” from “OPEN” [2017-04-06 jeu. 13:45]
    Giuseppe
  • State “OPEN” from [2017-04-06 jeu. 13:44]

For example, if the programmer forgets an argument as follows

t.addInstr("raise_thres(1);fixed(2);lower_thres();");   

the last instruction is not created. This bug makes it impossible to write instructions with no parameters

Debug does not work

  • State “OPEN” from [2017-04-06 jeu. 13:44]

When selecting SIMUL.debug(“All”), it will only print metasim debugging information. When selecting a specific constant (like _SCHED_DBG_LEV) it will print nothing.