Redirecting test stderr to files

This commit is contained in:
Pavel Kirienko
2015-07-02 02:33:42 +03:00
parent d1bd175a29
commit a4020f8749
+1 -1
View File
@@ -93,7 +93,7 @@ function(add_libuavcan_test name library flags) # Adds GTest executable and crea
# Tests run automatically upon successful build
# If failing tests need to be investigated with debugger, use 'make --ignore-errors'
add_custom_command(TARGET ${name} POST_BUILD
COMMAND ./${name} > "${name}.log"
COMMAND ./${name} 1>"${name}.log" 2>&1
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR})
endfunction()