ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
Are you referring to the compilationof your tests nodes, or the running of those nodes? The build process separates these things into two separate build steps, with associated build targets.
The relevant build targets:
tests
: Builds all of the test nodes. Does not run them.run_tests_<package>
: Runs the tests for a specific package. Does not build them.run_tests
: Depends on the tests
target and all of the run_tests_<package>
targets in the current workspace. Building this target causes all of the tests to be built and run.2 | No.2 Revision |
Are you referring to the compilation of your tests nodes, test executables, or the running of those nodes? tests? The build process separates these things into two separate build steps, with associated build targets.
The relevant build targets:
tests
: Builds all of the test nodes. Does not run them.run_tests_<package>
: Runs the tests for a specific package. Does not build them.run_tests
: Depends on the tests
target and all of the run_tests_<package>
targets in the current workspace. Building this target causes all of the tests to be built and run.