Skip to content

Commit 29a6df9

Browse files
committed
Adjust apps process list in benchmarks
1 parent c6f8651 commit 29a6df9

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

bench_it_all.bash

+3-2
Original file line numberDiff line numberDiff line change
@@ -356,15 +356,16 @@ apps_directories_array=($apps_directories)
356356
shift # Drops first element of arguments
357357
apps_to_process="$*" # Retrieves variadic elements after the first one (1st one excluded)
358358
359-
info_ln "apps_to_process: $apps_to_process"
360-
361359
if [[ -z $apps_to_process ]]
362360
then
361+
info_ln "Apps to process: all"
363362
note " Reminder: you can also add a second argument to this script if you want to run only one single test suite."
364363
note " Example:"
365364
curscript=$(basename "$0")
366365
randomapp=${apps_directories_array[ $RANDOM % ${#apps_directories_array[@]} ]}
367366
note " $curscript ${OUTPUT_DIR} ${randomapp}"
367+
else
368+
info_ln "Apps to process: $apps_to_process"
368369
fi
369370
370371
info_ln "Processing tests..."

0 commit comments

Comments
 (0)