Commit e2724862 authored by norvell's avatar norvell
Browse files

Fix syntax error. Remove set -e from test scripts

parent c5879a97
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -98,7 +98,7 @@ for s in scripts:
            proc = replace_paths(proc, testv_path, ref_path, cut_path)
            path_arg = proc.split()[-1]
            if "rm" in proc:
                if os.path.exists(path_arg)
                if os.path.exists(path_arg):
                    shutil.rmtree(path_arg)
            if "mkdir" in proc:
                Path(path_arg).mkdir(parents=True, exist_ok=True)
+0 −1
Original line number Diff line number Diff line
#!/usr/bin/env bash
set -e

if [ "$#" -ne 1 ]; then
    echo "Usage: $0 <CUT_DEC_BIN>"
+0 −1
Original line number Diff line number Diff line
#!/usr/bin/env bash
set -e

if [ "$#" -ne 1 ]; then
    echo "Usage: $0 <CUT_ENC_BIN>"
+0 −1
Original line number Diff line number Diff line
#!/usr/bin/env bash
set -e

if [ "$#" -ne 1 ]; then
    echo "Usage: $0 <CUT_DEC_BIN>"
+0 −1
Original line number Diff line number Diff line
#!/usr/bin/env bash
set -e

if [ "$#" -ne 1 ]; then
    echo "Usage: $0 <CUT_REND_BIN>"