Commit 591cd2ff authored by sagnowski's avatar sagnowski
Browse files

Use a different word for determining if runIvasCodec.py failed

parent 05f21101
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -47,7 +47,7 @@ make all -j 8
./scripts/runIvasCodec.py -p ./scripts/config/ci_linux.json -U $limit_input_to_x_seconds -m "${modes[@]}" --oc "${output_formats[@]}" -o $output_dir_voip -J "$network_profile_path" | tee -a jbm_be_test_output.txt

# Check if Python scripts above failed. They return status 0 even when running a mode fails, so we have to parse log file
run_errors=$(grep -i error jbm_be_test_output.txt) || true
run_errors=$(grep -i failed jbm_be_test_output.txt) || true
if [ "$run_errors" != 0 ] ; then
    echo "Run errors in runIvasCodec.py"
    exit 1