Home
last modified time | relevance | path

Searched refs:stdout (Results 1 – 6 of 6) sorted by relevance

/zcbor-latest/scripts/
Dadd_helptext.py34 stdout, _ = Popen(cmd, stdout=PIPE).communicate() variable
35 assert b"options:" in stdout, f"Seems like something went wrong: {stdout.decode('utf-8')}"
/zcbor-latest/tests/scripts/
Dtest_versions.py26 stdout=PIPE).communicate()[0].decode("utf-8").strip()
52 tags_stdout, _ = Popen(['git', 'tag'], stdout=PIPE).communicate()
Dtest_repo_files.py67 call0 = Popen(args, stdin=PIPE, stdout=PIPE, stderr=PIPE, **kwargs)
134 remote_tracking = run(remote_tr_args, capture_output=True).stdout.decode('utf-8').strip()
Dtest_zcbor.py556 call0 = Popen(args, stdin=PIPE, stdout=PIPE, stderr=PIPE)
/zcbor-latest/zcbor/
Dzcbor.py3228 git_args, cwd=PACKAGE_PATH, stdout=PIPE).communicate()[0].decode('utf-8').strip()
3327 f = sys.stdout if args.output == "-" else open(args.output, "w", encoding="utf-8")
3330 f = sys.stdout if args.output == "-" else open(args.output, "w", encoding="utf-8")
3333 f = sys.stdout if args.output == "-" else open(args.output, "w", encoding="utf-8")
3338 f = sys.stdout if args.output == "-" else open(args.output, "w", encoding="utf-8")
3341 f = sys.stdout.buffer if args.output == "-" else open(args.output, "wb")
/zcbor-latest/
DREADME.md649 to interpret the contents. Use "-" to indicate stdout.