aboutsummaryrefslogtreecommitdiff
path: root/integrationtests/integrationtests.launch
diff options
context:
space:
mode:
Diffstat (limited to 'integrationtests/integrationtests.launch')
-rw-r--r--integrationtests/integrationtests.launch15
1 files changed, 15 insertions, 0 deletions
diff --git a/integrationtests/integrationtests.launch b/integrationtests/integrationtests.launch
new file mode 100644
index 000000000..2e59b5615
--- /dev/null
+++ b/integrationtests/integrationtests.launch
@@ -0,0 +1,15 @@
+<launch>
+ <arg name="headless" default="true"/>
+ <arg name="gui" default="false"/>
+ <arg name="enable_logging" default="false"/>
+ <arg name="enable_ground_truth" default="false"/>
+ <arg name="log_file" default="iris"/>
+
+ <include file="$(find px4)/integrationtests/demo_tests/demo_tests.launch">
+ <arg name="headless" value="$(arg headless)"/>
+ <arg name="gui" value="$(arg gui)"/>
+ <arg name="enable_logging" value="$(arg enable_logging)" />
+ <arg name="enable_ground_truth" value="$(arg enable_ground_truth)" />
+ <arg name="log_file" value="$(arg log_file)"/>
+ </include>
+</launch>