forked from Archive/PX4-Autopilot
18 lines
732 B
XML
18 lines
732 B
XML
<?xml version="1.0"?>
|
|
<launch>
|
|
<!-- Posix SITL MAVROS integration tests -->
|
|
<!-- Test offboard local posistion control with iris -->
|
|
<arg name="gui" default="false"/>
|
|
<arg name="est" default="ekf2"/>
|
|
<arg name="respawn_gazebo" default="true"/>
|
|
<!-- 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)"/>
|
|
</include>
|
|
<!-- ROStest -->
|
|
<test test-name="mavros_offboard_posctl_test" pkg="px4" type="mavros_offboard_posctl_test.py" time-limit="120.0"/>
|
|
</launch>
|