MCPcopy Create free account
hub / github.com/ElementsProject/elements / job

Function job

test/fuzz/test_runner.py:194–204  ·  view source on GitHub ↗
(command, t)

Source from the content-addressed store, hash-verified

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:

Callers

nothing calls this directly

Calls 4

get_fuzz_envFunction · 0.85
formatMethod · 0.80
joinMethod · 0.45
runMethod · 0.45

Tested by

no test coverage detected