(command, t)
| 192 | logging.info("Generating corpus to {}".format(corpus_dir)) |
| 193 | |
| 194 | def job(command, t): |
| 195 | logging.debug("Running '{}'\n".format(" ".join(command))) |
| 196 | logging.debug("Command '{}' output:\n'{}'\n".format( |
| 197 | ' '.join(command), |
| 198 | subprocess.run( |
| 199 | command, |
| 200 | env=get_fuzz_env(target=t, source_dir=src_dir), |
| 201 | check=True, |
| 202 | stderr=subprocess.PIPE, |
| 203 | universal_newlines=True, |
| 204 | ).stderr)) |
| 205 | |
| 206 | futures = [] |
| 207 | for target in targets: |
nothing calls this directly
no test coverage detected