Commit 6914ef5a authored by norvell's avatar norvell
Browse files

Remove double -q

parent 097f6488
Loading
Loading
Loading
Loading
Loading
+3 −4
Original line number Diff line number Diff line
@@ -67,7 +67,6 @@ for s in scripts:
        cut_path = ""
        preproc = []
        for line in fp.readlines():
            print(line)
            if line.startswith("rm") or line.startswith("mkdir"):
                preproc.append(line.strip())
            if line.startswith("TESTV_PATH"):
@@ -105,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","-q"] + enc_opts.split()[1:])
        subprocess.run(["./IVAS_cod"] + enc_opts.split()[1:])
    if dec_opts:
        dec_opts = replace_paths(dec_opts, testv_path, ref_path, cut_path)
        subprocess.run(["./IVAS_dec","-q"] + dec_opts.split()[1:])    
        subprocess.run(["./IVAS_dec"] + dec_opts.split()[1:])    
    if rend_opts:
        rend_opts = replace_paths(rend_opts, testv_path, ref_path, cut_path)
        subprocess.run(["./IVAS_rend","-q"] + rend_opts.split()[1:])    
        subprocess.run(["./IVAS_rend"] + rend_opts.split()[1:])    

    diff_opts = replace_paths(diff_opts, testv_path, ref_path, cut_path)
    if ';' in diff_opts: