Commit 1e493eba authored by Jan Kiene's avatar Jan Kiene
Browse files

add debug output

parent e4aa8599
Loading
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -51,6 +51,7 @@ def run_check(modes: list, out_formats: list, tests: list, run_fec: bool = True)
		"--oc",
		*out_formats,
	]
	print(cmd_no_fec)

	proc = subprocess.Popen(cmd_no_fec, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
	for c in iter(lambda: proc.stdout.read(1), b""):
@@ -79,6 +80,7 @@ def run_check(modes: list, out_formats: list, tests: list, run_fec: bool = True)
				fi.unlink()

	cmd_fec = cmd_no_fec + ["--decoder_only", "-f", EP_FILE]
	print(cmd_fec)

	proc = subprocess.Popen(cmd_fec, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
	for c in iter(lambda: proc.stdout.read(1), b""):