-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ros_bridge][test] Hand camera image topic should be published on sim.
- Loading branch information
Showing
4 changed files
with
38 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<launch> | ||
<arg name="CORBA_PORT" default="2809" /> | ||
|
||
<include file="$(find nextage_ros_bridge)/test/test_nextage_ros_bridge_common.launch"> | ||
<arg name="corbaport" value="$(arg CORBA_PORT)" /> | ||
<arg name="GUI" value="false" /> | ||
</include> | ||
|
||
<!-- Test if hand camera topic published on sim. --> | ||
<arg name='TESTNAME_HANDCAM_L' value='hz_handcamera_l' /> | ||
<test pkg="rostest" type="hztest" test-name="$(arg TESTNAME_HANDCAM_L)" | ||
name="$(arg TESTNAME_HANDCAM_L)" time-limit="30o" retry="3" > | ||
<param name="topic" value="/hand_left/image_raw" /> | ||
<param name="hz" value="15.0" /> | ||
<param name="hzerror" value="5.0" /> | ||
<param name="test_duration" value="5.0" /> | ||
<param name="wait_time" value="20.0" /> | ||
</test> | ||
</launch> |
18 changes: 18 additions & 0 deletions
18
nextage_ros_bridge/test/test_nextage_ros_bridge_common.launch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<launch> | ||
<!-- TODO In the future this launch file can be removed as long as we | ||
modify hironx_ros_bridge)/test/test-hironx-ros-bridge-common.launch so | ||
that it accepts nextage_ros_bridge_simulation.launch as an arg. | ||
--> | ||
|
||
<arg name="corbaport" default="2809" /> | ||
<arg name="GUI" default="false" /> | ||
|
||
<!-- See https://github.com/start-jsk/rtmros_common/issues/416#issuecomment-46846623 --> | ||
<node pkg="rtmbuild" type="start_omninames.sh" args="$(arg corbaport)" | ||
name="start_omninames" /> | ||
|
||
<include file="$(find nextage_ros_bridge)/launch/nextage_ros_bridge_simulation.launch" > | ||
<arg name="GUI" value="$(arg GUI)" /> | ||
<arg name="corbaport" value="$(arg corbaport)" /> | ||
</include> | ||
</launch> |