Commit 19a9602a authored by Jan Kiene's avatar Jan Kiene
Browse files

fix f srings

parent b1b2dc1f
Loading
Loading
Loading
Loading
Loading
+6 −2
Original line number Diff line number Diff line
@@ -749,7 +749,9 @@ class DecoderFrontend:
                            cwd = Path(tmp_dir).absolute()
                        else:
                            cwd = Path(run_dir).absolute()
                        log_dbg_msg(f"eid-xor command:\n {" ".join(eid_command)}")

                        eid_command_str = " ".join(eid_command)
                        log_dbg_msg(f"eid-xor command:\n {eid_command_str}")
                        result = run(eid_command, check=True, cwd=cwd)
            except Exception as e:
                pytest.fail(f"eid-xor operation failed! - {e}")
@@ -794,7 +796,9 @@ class DecoderFrontend:
                    else:
                        cwd = Path(run_dir).absolute()
                    run(netsim_command, check=True, cwd=cwd)
                    log_dbg_msg(f"netsim command:\n {" ".join(netsim_command)}")

                    netsim_command_str = " ".join(netsim_command)
                    log_dbg_msg(f"netsim command:\n {netsim_command_str}")
            except Exception as e:
                pytest.fail(f"netsim operation failed! - {e}")