From e246aed760abbb4323cc10fbf0405bdd4ac7c536 Mon Sep 17 00:00:00 2001 From: Sai-teja573 <122cs0573@nitrkl.ac.in> Date: Thu, 10 Jul 2025 16:47:04 +0530 Subject: [PATCH] Fix: Remove non-POSIX-compliant exec tee line (SC3001 warning)" Signed-off-by: Sai-teja573 <122cs0573@nitrkl.ac.in> --- .../Kernel/FunctionalArea/baseport/adsp_remoteproc/run.sh | 2 -- .../Kernel/FunctionalArea/baseport/cdsp_remoteproc/run.sh | 4 +--- .../Kernel/FunctionalArea/baseport/wpss_remoteproc/run.sh | 2 -- 3 files changed, 1 insertion(+), 7 deletions(-) diff --git a/Runner/suites/Kernel/FunctionalArea/baseport/adsp_remoteproc/run.sh b/Runner/suites/Kernel/FunctionalArea/baseport/adsp_remoteproc/run.sh index c94626e9..870cb0e9 100755 --- a/Runner/suites/Kernel/FunctionalArea/baseport/adsp_remoteproc/run.sh +++ b/Runner/suites/Kernel/FunctionalArea/baseport/adsp_remoteproc/run.sh @@ -33,8 +33,6 @@ firmware_name="adsp" res_file="./$TESTNAME.res" LOG_FILE="./$TESTNAME.log" -exec > >(tee -a "$LOG_FILE") 2>&1 - test_path=$(find_test_case_by_name "$TESTNAME") cd "$test_path" || exit 1 diff --git a/Runner/suites/Kernel/FunctionalArea/baseport/cdsp_remoteproc/run.sh b/Runner/suites/Kernel/FunctionalArea/baseport/cdsp_remoteproc/run.sh index 6a1b0e4c..def45b50 100755 --- a/Runner/suites/Kernel/FunctionalArea/baseport/cdsp_remoteproc/run.sh +++ b/Runner/suites/Kernel/FunctionalArea/baseport/cdsp_remoteproc/run.sh @@ -32,9 +32,7 @@ TESTNAME="cdsp_remoteproc" firmware_name="cdsp" res_file="./$TESTNAME.res" LOG_FILE="./$TESTNAME.log" - -exec > >(tee -a "$LOG_FILE") 2>&1 - + test_path=$(find_test_case_by_name "$TESTNAME") cd "$test_path" || exit 1 diff --git a/Runner/suites/Kernel/FunctionalArea/baseport/wpss_remoteproc/run.sh b/Runner/suites/Kernel/FunctionalArea/baseport/wpss_remoteproc/run.sh index 46e8c462..a6a5c131 100755 --- a/Runner/suites/Kernel/FunctionalArea/baseport/wpss_remoteproc/run.sh +++ b/Runner/suites/Kernel/FunctionalArea/baseport/wpss_remoteproc/run.sh @@ -33,8 +33,6 @@ firmware_name="wpss" res_file="./$TESTNAME.res" LOG_FILE="./$TESTNAME.log" -exec > >(tee -a "$LOG_FILE") 2>&1 - test_path=$(find_test_case_by_name "$TESTNAME") cd "$test_path" || exit 1