CI: test launch files: setup for different vehicles, some reordering

This commit is contained in:
Anthony Lamping
2018-03-31 08:25:47 -04:00
committed by Daniel Agar
parent 171a65c1cb
commit e91275bcb4
5 changed files with 31 additions and 33 deletions
+6 -6
View File
@@ -1,16 +1,16 @@
<?xml version="1.0"?>
<launch>
<!-- Posix SITL MAVROS integration tests -->
<!-- Test offboard local posistion control with iris -->
<arg name="gui" default="false"/>
<!-- Test offboard local posistion control -->
<arg name="est" default="ekf2"/>
<arg name="respawn_gazebo" default="true"/>
<arg name="gui" default="false"/>
<arg name="vehicle" default="iris"/>
<!-- MAVROS, PX4 SITL, Gazebo -->
<include file="$(find px4)/launch/mavros_posix_sitl.launch">
<arg name="gui" value="$(arg gui)"/>
<arg name="vehicle" value="iris"/>
<arg name="est" value="$(arg est)"/>
<arg name="respawn_gazebo" value="$(arg respawn_gazebo)"/>
<arg name="gui" value="$(arg gui)"/>
<arg name="vehicle" value="$(arg vehicle)"/>
<arg name="respawn_gazebo" value="true"/>
<arg name="respawn_mavros" value="true"/>
</include>
<!-- ROStest -->