px4-firmware/test/mavros_posix_test_mission.test

23 lines
947 B
Plaintext
Raw Permalink Normal View History

<?xml version="1.0"?>
<launch>
<!-- Posix SITL MAVROS integration tests -->
<!-- Test a mission -->
<arg name="est" default="ekf2"/>
<arg name="gui" default="false"/>
<arg name="interactive" default="false"/>
2019-01-30 23:58:06 -04:00
<arg name="mission"/> <!-- no default, required input -->
<arg name="vehicle" default="iris"/>
<!-- MAVROS, PX4 SITL, Gazebo -->
<include file="$(find px4)/launch/mavros_posix_sitl.launch">
<arg name="est" value="$(arg est)"/>
<arg name="gui" value="$(arg gui)"/>
<arg name="interactive" value="$(arg interactive)"/>
<arg name="respawn_gazebo" value="true"/>
<arg name="respawn_mavros" value="true"/>
2019-01-30 23:58:06 -04:00
<arg name="vehicle" value="$(arg vehicle)"/>
2019-01-30 23:50:09 -04:00
<arg name="verbose" value="true"/>
</include>
<!-- ROStest -->
2018-03-01 12:56:21 -04:00
<test test-name="$(arg mission)" pkg="px4" type="mission_test.py" time-limit="300.0" args="$(arg mission).plan"/>
</launch>