Loading tests/test_26252.py +3 −3 Original line number Diff line number Diff line Loading @@ -104,13 +104,13 @@ def test_26252(test_tag): if enc_opts: enc_opts = replace_paths(enc_opts, testv_path, ref_path, cut_path) subprocess.run(["./IVAS_cod"] + enc_opts.split()[1:]) subprocess.run(["./IVAS_cod"] + enc_opts.split()[1:], check = True) if dec_opts: dec_opts = replace_paths(dec_opts, testv_path, ref_path, cut_path) subprocess.run(["./IVAS_dec"] + dec_opts.split()[1:]) subprocess.run(["./IVAS_dec"] + dec_opts.split()[1:], check = True) if rend_opts: rend_opts = replace_paths(rend_opts, testv_path, ref_path, cut_path) subprocess.run(["./IVAS_rend"] + rend_opts.split()[1:]) subprocess.run(["./IVAS_rend"] + rend_opts.split()[1:], check = True) diff_opts = replace_paths(diff_opts, testv_path, ref_path, cut_path) if ';' in diff_opts: Loading Loading
tests/test_26252.py +3 −3 Original line number Diff line number Diff line Loading @@ -104,13 +104,13 @@ def test_26252(test_tag): if enc_opts: enc_opts = replace_paths(enc_opts, testv_path, ref_path, cut_path) subprocess.run(["./IVAS_cod"] + enc_opts.split()[1:]) subprocess.run(["./IVAS_cod"] + enc_opts.split()[1:], check = True) if dec_opts: dec_opts = replace_paths(dec_opts, testv_path, ref_path, cut_path) subprocess.run(["./IVAS_dec"] + dec_opts.split()[1:]) subprocess.run(["./IVAS_dec"] + dec_opts.split()[1:], check = True) if rend_opts: rend_opts = replace_paths(rend_opts, testv_path, ref_path, cut_path) subprocess.run(["./IVAS_rend"] + rend_opts.split()[1:]) subprocess.run(["./IVAS_rend"] + rend_opts.split()[1:], check = True) diff_opts = replace_paths(diff_opts, testv_path, ref_path, cut_path) if ';' in diff_opts: Loading