Fix ROS tools tests considering some of them exit with 64 on usage

This commit is contained in:
Oleg Kalachev
2022-11-10 19:57:02 +06:00
parent a0322c55f2
commit 393801b023

View File

@@ -80,11 +80,11 @@ roscd
rosrun
rosmsg
rossrv
rosnode
rostopic
rosservice
rosnode || [ $? -eq 64 ] # usage output code is 64
rostopic || [ $? -eq 64 ]
rosservice || [ $? -eq 64 ]
rosparam
roslaunch
roslaunch -h
# validate examples are present
[[ $(ls $H/examples/*) ]]