Commit 410b7e00 authored by BOHMRR's avatar BOHMRR
Browse files

added TEST print of files and sizes that get compared

parent 77152b7e
Loading
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -658,6 +658,10 @@ def spar_foa_dec(
        for count in range(ch_count):
            ch_id = str(count + 1)

            # TEST
            fsize1 = os.path.getsize(f"{dut_out_dir}/out{ch_id}ch.raw")
            fsize2 = os.path.getsize(f"{ref_out_dir}/out{ch_id}ch.raw")
            print(f"Want to compare {dut_out_dir}/out{ch_id}ch.raw ({fsize1} bytes) with {ref_out_dir}/out{ch_id}ch.raw ({fsize2} bytes)")
            if cmp_custom(
                f"{dut_out_dir}/out{ch_id}ch.raw",
                f"{ref_out_dir}/out{ch_id}ch.raw",