ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
You can build all the tests for a specific package using:
catkin build <package_name> --no-deps --catkin-make-args tests
Then you can use the rostest cli to choose a specific test to run:
rostest <package_name> <testname.test>
2 | No.2 Revision |
You can build all the tests for a specific package using:
catkin build <package_name> --no-deps --catkin-make-args tests
Then you can use the rostest cli to choose a specific test to run:
rostest <package_name> <testname.test>
3 | No.3 Revision |
You can build all the tests for a specific package using:
using:
catkin build <package_name> --no-deps --catkin-make-args tests
Then you can use the rostest cli to choose a specific test to run:
run:
rostest <package_name> <testname.test>