Commit 5ee6cf5d authored by laurent's avatar laurent Committed by Roberto Louro Magueta

change the logic in cmake_targets/autotests/run_exec_autotests.bash to run all...

change the logic in cmake_targets/autotests/run_exec_autotests.bash to run all runs of same test in //
parent 6ceaf084
......@@ -107,12 +107,16 @@ function test_run() {
echo "<EXECUTION LOG Test Case = $test_case_name.${tags_array[$tags_array_index]}, Run = $run_index >" >> "$temp_exec_log"
echo "Executing $main_exec $main_exec_args_array_index " >> "$temp_exec_log"
uname -a >> "$temp_exec_log"
"$main_exec" $main_exec_args_array_index >> "$temp_exec_log" 2>&1
"$main_exec" $main_exec_args_array_index >> "$temp_exec_log" 2>&1 &
done
wait
for (( run_index=1; run_index <= $nruns; run_index++ ))
do
echo "</EXECUTION LOG Test Case = $test_case_name.${tags_array[$tags_array_index]}, Run = $run_index >" >> $temp_exec_log 2>&1
cat $temp_exec_log >> $log_file 2>&1
result=PASS
for search_expr in "${search_expr_array[@]}"
do
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment