Commit 43d66734 authored by norvell's avatar norvell
Browse files

Add checking for errors in test_26252.py

parent 80a4da04
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -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: