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

Function parse_test_list

test/fuzz/test_runner.py:294–304  ·  view source on GitHub ↗
(*, fuzz_bin)

Source from the content-addressed store, hash-verified

292
293
294def parse_test_list(*, fuzz_bin):
295 test_list_all = subprocess.run(
296 fuzz_bin,
297 env={
298 'PRINT_ALL_FUZZ_TARGETS_AND_ABORT': ''
299 },
300 stdout=subprocess.PIPE,
301 stderr=subprocess.DEVNULL,
302 universal_newlines=True,
303 ).stdout.splitlines()
304 return test_list_all
305
306
307if __name__ == '__main__':

Callers 1

mainFunction · 0.85

Calls 1

runMethod · 0.45

Tested by

no test coverage detected