Skip to content
Snippets Groups Projects
Commit 087bf05a authored by Lorenz Meier's avatar Lorenz Meier
Browse files

Made PX4IO update an unit test entry

parent 4320afab
No related branches found
No related tags found
No related merge requests found
......@@ -2,6 +2,8 @@
#
# PX4FMU startup script for test hackery.
#
set unit_test_failure 0
uorb start
if sercon
......@@ -41,6 +43,9 @@ fi
if px4io start
then
echo "PX4IO OK"
else
set unit_test_failure 1
set unit_test_failure_list "${unit_test_failure_list} px4io_start"
fi
if px4io checkcrc $io_file
......@@ -51,7 +56,6 @@ else
tone_alarm MBABGP
if px4io forceupdate 14662 $io_file
then
usleep 500000
if px4io start
then
echo "PX4IO restart OK"
......@@ -59,12 +63,14 @@ else
else
echo "PX4IO restart failed"
tone_alarm MNGGG
sleep 5
reboot
set unit_test_failure 1
set unit_test_failure_list "${unit_test_failure_list} px4io_flash"
fi
else
echo "PX4IO update failed"
tone_alarm MNGGG
set unit_test_failure 1
set unit_test_failure_list "${unit_test_failure_list} px4io_flash"
fi
fi
......@@ -81,8 +87,6 @@ fi
# Add new unit tests using the same pattern as below.
#
set unit_test_failure 0
if mavlink_tests
then
else
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment