ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

Use the -j1 flag, it will get passed through catkin_make to make. It only allows make to process 1 job at a time. The full command would be:

catkin_make run_tests -j1

One thing to note is this will make any tests that need to be compiled take forever so I would recommend running catkin_make tests beforehand to compile everything.

Use the -j1 flag, it will get passed through catkin_make to make. It only allows make to process 1 job at a time. The full command would be:

catkin_make run_tests -j1

One thing to note is this will make any tests that need to be compiled take forever so I would recommend running catkin_make tests beforehand to compile everything.

Use the -j1 flag, it will get passed through catkin_make to make. It only allows make to process 1 job at a time. The full command would be:

catkin_make run_tests -j1

One thing to note is this will make any tests that need to be compiled take forever so I would recommend running catkin_make tests beforehand to compile everything.all of the tests and before that catkin_make to compile any things that are being tested. The full build sequence I would recommend is:

catkin_make
catkin_make tests
catkin_make run_tests -j1