Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

forgot to revert name of script being called #480

Merged
merged 3 commits into from
Mar 10, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions .github/workflows/BLE_Examples_Test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ jobs:
echo "LOCK_MAX32655_B2 : $LOCK_MAX32655_B2 "
if [[ $MAX32655_RUN_ALL_TEST == 'true' ]]; then
echo "Testing all examples"
./new_test_launcher.sh max32655 $dut_uart $dut_serial "all"
./test_launcher.sh max32655 $dut_uart $dut_serial "all"
else
if [[ $MAX32655_BLE_FILES_CHANGED == 'true' ]]; then
cd .github/workflows/scripts
Expand All @@ -228,7 +228,7 @@ jobs:
# launch single tests
echo "Running $example test on MAX32655"
set +e
./new_test_launcher.sh max32655 $dut_uart $dut_serial $example
./test_launcher.sh max32655 $dut_uart $dut_serial $example
let "testResult=$?"
if [ "$testResult" -ne "0" ]; then
# update failed test count
Expand All @@ -243,7 +243,7 @@ jobs:
#conencted test launcher
echo "Testing MAX32655_DATS_CONNECTED_TEST"
set +e
./new_test_launcher.sh max32655 $dut_uart $dut_serial "dats"
./test_launcher.sh max32655 $dut_uart $dut_serial "dats"
let "testResult=$?"
if [ "$testResult" -ne "0" ]; then
# update failed_test count
Expand All @@ -260,7 +260,7 @@ jobs:
set +e
#call test here
#***************** uncomment actual test here *************
./new_test_launcher.sh max32655 $dut_uart $dut_serial "ota"
./test_launcher.sh max32655 $dut_uart $dut_serial "ota"
let "testResult=$?"
if [ "$testResult" -ne "0" ]; then
# update failed test count
Expand Down Expand Up @@ -452,7 +452,7 @@ jobs:
echo "LOCK_MAX32665_B1 : $LOCK_MAX32665_B1 "
if [[ $MAX32665_RUN_ALL_TEST == 'true' ]]; then
echo "Testing all examples"
./new_test_launcher.sh max32665 $dut_uart $dut_serial "all"
./test_launcher.sh max32665 $dut_uart $dut_serial "all"
else
if [[ $MAX32665_BLE_FILES_CHANGED == 'true' ]]; then
cd .github/workflows/scripts
Expand All @@ -461,7 +461,7 @@ jobs:
# launch single tests
echo "Running $example test on MAX32665"
set +e
./new_test_launcher.sh max32665 $dut_uart $dut_serial $example
./test_launcher.sh max32665 $dut_uart $dut_serial $example
let "testResult=$?"
if [ "$testResult" -ne "0" ]; then
# update failed test count
Expand All @@ -476,7 +476,7 @@ jobs:
#conencted test launcher
echo "Testing MAX32665_DATS_CONNECTED_TEST"
set +e
./new_test_launcher.sh max32665 $dut_uart $dut_serial "dats"
./test_launcher.sh max32665 $dut_uart $dut_serial "dats"
let "testResult=$?"
if [ "$testResult" -ne "0" ]; then
# update failed_test count
Expand All @@ -493,7 +493,7 @@ jobs:
set +e
#call test here
#***************** uncomment actual test here *************
./new_test_launcher.sh max32665 $dut_uart $dut_serial "ota"
./test_launcher.sh max32665 $dut_uart $dut_serial "ota"
let "testResult=$?"
if [ "$testResult" -ne "0" ]; then
# update failed test count
Expand Down Expand Up @@ -684,7 +684,7 @@ jobs:
echo "LOCK_MAX32690_B1 : $LOCK_MAX32690_B1 "
if [[ $MAX32609_RUN_ALL_TEST == 'true' ]]; then
echo "Testing all examples"
./new_test_launcher.sh max32690 $dut_uart $dut_serial "all"
./test_launcher.sh max32690 $dut_uart $dut_serial "all"
else
if [[ $MAX32690_BLE_FILES_CHANGED == 'true' ]]; then
cd .github/workflows/scripts
Expand All @@ -693,7 +693,7 @@ jobs:
# launch single tests
echo "Running $example test on MAX32690"
set +e
./new_test_launcher.sh max32690 $dut_uart $dut_serial $example
./test_launcher.sh max32690 $dut_uart $dut_serial $example
let "testResult=$?"
if [ "$testResult" -ne "0" ]; then
# update failed test count
Expand All @@ -708,7 +708,7 @@ jobs:
#conencted test launcher
echo "Testing MAX32690_DATS_CONNECTED_TEST"
set +e
./new_test_launcher.sh max32690 $dut_uart $dut_serial "dats"
./test_launcher.sh max32690 $dut_uart $dut_serial "dats"
let "testResult=$?"
if [ "$testResult" -ne "0" ]; then
# update failed_test count
Expand All @@ -725,7 +725,7 @@ jobs:
set +e
#call test here
#***************** uncomment actual test here *************
./new_test_launcher.sh max32690 $dut_uart $dut_serial "ota"
./test_launcher.sh max32690 $dut_uart $dut_serial "ota"
let "testResult=$?"
if [ "$testResult" -ne "0" ]; then
# update failed test count
Expand Down