You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to make catkin run my unit tests. It works but there's a lot of output from catkin_make that I don't need. The default alias for catkin run_tests contains the --verbose parameter for catkin build which appears to be necessary in order to get the test result output. But it also outputs all those compiler and linker info stuff that I don't need.
Is there a way to get only the run_tests output (see below) while suppressing the make output?
-- run_tests.py: execute commands
/home/.../test --gtest_output=xml:/home/.../gtest-test.xml
[==========] Running 1 test from 1 test case.
[----------] Global test environment set-up.
[----------] 1 test from TestSuite
[ RUN ] TestSuite.testCase1
/home/.../test/utest.cpp:5: Failure
Failed
[ FAILED ] TestSuite.testCase1 (0 ms)
[----------] 1 test from TestSuite (0 ms total)
[----------] Global test environment tear-down
[==========] 1 test from 1 test case ran. (0 ms total)
[ PASSED ] 0 tests.
[ FAILED ] 1 test, listed below:
[ FAILED ] TestSuite.testCase1
1 FAILED TEST
The text was updated successfully, but these errors were encountered:
I'm trying to make
catkin
run my unit tests. It works but there's a lot of output fromcatkin_make
that I don't need. The default alias forcatkin run_tests
contains the--verbose
parameter forcatkin build
which appears to be necessary in order to get the test result output. But it also outputs all those compiler and linker info stuff that I don't need.Is there a way to get only the
run_tests
output (see below) while suppressing themake
output?The text was updated successfully, but these errors were encountered: