Skip to content

Commit

Permalink
tests/psoc6: Add mpremote path right.
Browse files Browse the repository at this point in the history
Signed-off-by: NikhitaR-IFX <[email protected]>
  • Loading branch information
NikhitaR-IFX committed Jan 29, 2024
1 parent c8dafcc commit 1f154f6
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions tests/psoc6/run_psoc6_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -263,10 +263,9 @@ if [ ${fs} -eq 1 ]; then
echo " attempting to save different test files in flash "
echo
echo " saving test_fs_small_file.txt to FS - (size : 10KB) "
MPREMOTE="../tools/mpremote/mpremote.py"
pip install -r ../tools/mpremote/requirements.txt
command_output=$(python3 ${MPREMOTE} fs cp test_inputs/test_fs_small_file.txt :/)
exp_output="cp test_inputs/test_fs_small_file.txt :/"

command_output=$( ../../tools/mpremote/mpremote.py fs 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."
exit 1
Expand All @@ -276,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=$(python3 ${MPREMOTE} fs cp test_inputs/test_fs_medium_file.txt :/)
command_output=$(../../tools/mpremote/mpremote.py fs 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=$(python3 ${MPREMOTE} fs cp test_inputs/test_fs_large_file.txt :/)
command_output=$(../../tools/mpremote/mpremote.py fs 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 1f154f6

Please sign in to comment.