Commit 1fb8c0ae authored by Jan Kiene's avatar Jan Kiene
Browse files

try withpout parallel execution

parent 166d192f
Loading
Loading
Loading
Loading
Loading
+6 −5
Original line number Diff line number Diff line
@@ -123,13 +123,14 @@ for ref in "$output_dir_default_dec"/*.wav; do

    # Print paths of compared files, since the script doesn't do it
    printf "\nComparing %s and %s\n" "$ref" "$cut" | tee -a voip_be_test_output.txt
    $python_audiofile_script_path compare "$ref" "$cut" "$jbm_offset" &
    pids="$pids $!"
    $python_audiofile_script_path compare "$ref" "$cut" "$jbm_offset"
    echo "$?t"
    # pids="$pids $!"
done

for pid in $pids; do
    wait $pid || let "all_be=0"
done
# for pid in $pids; do
#     wait $pid || let "all_be=0"
# done

if [ $all_be -eq 1 ]; then
    printf "\n\nAll tested conditions are bit-exact\n" | tee -a voip_be_test_output.txt