(self, path, cmd, opt)
| 218 | |
| 219 | # show fuzzing results |
| 220 | def fuzzed(self, path, cmd, opt): |
| 221 | opt1, opt2, opt3 = opt |
| 222 | if isinstance(opt1, bool): |
| 223 | opt1 = (Back.GREEN + str(opt1) + Back.BLUE + " ")\ |
| 224 | if opt1 else (Back.RED + str(opt1) + Back.BLUE + " ") |
| 225 | if isinstance(opt2, bool): |
| 226 | opt2 = (Back.GREEN + str(opt2) + Back.BLUE + " ")\ |
| 227 | if opt2 else (Back.RED + str(opt2) + Back.BLUE + " ") |
| 228 | if isinstance(opt3, bool): |
| 229 | opt3 = (Back.GREEN + str(opt3) + Back.BLUE + " ")\ |
| 230 | if opt3 else (Back.RED + str(opt3) + Back.BLUE + " ") |
| 231 | opt = opt1, opt2, opt3 |
| 232 | self.info("%-35s %-12s %-7s %-7s %-7s" % ((path, cmd) + opt)) |
| 233 | |
| 234 | # show captured jobs |
| 235 | def joblist(self, xxx_todo_changeme1): |
no test coverage detected