Bug
Infinite loops for repeat (negative) [...]
Fix
In visitLoop in builder.py:
change
loopCond = ChironAST.ConditionCommand(ChironAST.NEQ(counterVar, constZero))
to
loopCond = ChironAST.ConditionCommand(ChironAST.GT(counterVar, constZero))
otherwise fuzzers will go into infinite loops if repeat has a fuzzing var.
version: 1.0.4
Bug
Infinite loops for repeat (negative) [...]
Fix
In visitLoop in builder.py:
change
loopCond = ChironAST.ConditionCommand(ChironAST.NEQ(counterVar, constZero))to
loopCond = ChironAST.ConditionCommand(ChironAST.GT(counterVar, constZero))otherwise fuzzers will go into infinite loops if repeat has a fuzzing var.
version: 1.0.4