Skip to content

Commit

Permalink
tests/psoc6: Add device to mpremote cmd.
Browse files Browse the repository at this point in the history
Signed-off-by: NikhitaR-IFX <Nikhita.Rajasekhar@infineon.com>
  • Loading branch information
NikhitaR-IFX committed Jan 30, 2024
1 parent 7aa2341 commit d395073
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/psoc6/run_psoc6_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ if [ ${fs} -eq 1 ]; then
echo
echo " saving test_fs_small_file.txt to FS - (size : 10KB) "

command_output=$( ../tools/mpremote/mpremote.py cp ./test_inputs/test_fs_small_file.txt :/)
command_output=$( ../tools/mpremote/mpremote.py connect ${device0} cp ./test_inputs/test_fs_small_file.txt :/)
exp_output="cp ./test_inputs/test_fs_small_file.txt :/"
if [ "$command_output" != "$exp_output" ]; then
echo "Error: Cannot save small file."
Expand All @@ -275,15 +275,15 @@ if [ ${fs} -eq 1 ]; then
if [ ${afs} -eq 1 ]; then

echo " saving test_fs_medium_file.txt to FS - (size : 500KB) "
command_output=$(../tools/mpremote/mpremote.py cp test_inputs/test_fs_medium_file.txt :/)
command_output=$(../tools/mpremote/mpremote.py connect ${device0} cp test_inputs/test_fs_medium_file.txt :/)
exp_output="cp test_inputs/test_fs_medium_file.txt :/"
if [ "$command_output" != "$exp_output" ]; then
echo "Error: Cannot save medium file."
exit 1
fi

echo " saving test_fs_large_file.txt to FS - (size : 1MB) "
command_output=$(../tools/mpremote/mpremote.py cp test_inputs/test_fs_large_file.txt :/)
command_output=$(../tools/mpremote/mpremote.py connect ${device0} cp test_inputs/test_fs_large_file.txt :/)
exp_output="cp test_inputs/test_fs_large_file.txt :/"
if [ "$command_output" != "$exp_output" ]; then
echo "Error: Cannot save large file."
Expand Down

0 comments on commit d395073

Please sign in to comment.