@@ -1,5 +1,7 @@
#! /bin/bash
+profile=${1:-default}
+
if [ ! $SCRIPTS_DIR ]; then
# assume we're running standalone
export SCRIPTS_DIR=../../scripts/
@@ -7,4 +9,4 @@ fi
source $SCRIPTS_DIR/setenv.sh
-$SCRIPTS_DIR/run_c_files.sh "hrtimer-prio"
+$SCRIPTS_DIR/run_c_files.sh $profile "hrtimer-prio"
@@ -1,5 +1,7 @@
#! /bin/bash
+profile=${1:-default}
+
if [ ! $SCRIPTS_DIR ]; then
# assume we're running standalone
export SCRIPTS_DIR=../../scripts/
@@ -13,7 +15,7 @@ source $SCRIPTS_DIR/setenv.sh
# issues right now.
LOG_FILE="$LOG_DIR/$LOG_FORMAT-rdtsc-latency.log"
-$SCRIPTS_DIR/run_c_files.sh "rdtsc-latency"
+$SCRIPTS_DIR/run_c_files.sh $profile "rdtsc-latency"
LOG_FILE="$LOG_DIR/$LOG_FORMAT-preempt_timing.log"
-$SCRIPTS_DIR/run_c_files.sh "preempt_timing"
+$SCRIPTS_DIR/run_c_files.sh $profile "preempt_timing"
Signed-off-by: Ciprian Barbu <ciprian.barbu@linaro.org> Upstream-Status: Pending --- testcases/realtime/func/hrtimer-prio/run_auto.sh | 4 +++- testcases/realtime/func/measurement/run_auto.sh | 6 ++++-- 2 files changed, 7 insertions(+), 3 deletions(-)