From 52fbe26e3c4addfcd626f049e5cd026919410736 Mon Sep 17 00:00:00 2001 From: Timofey Turenko Date: Thu, 5 Mar 2015 18:14:59 +0200 Subject: [PATCH] redirect all maxscale output to /dev/null/ also during start for testing --- testall.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testall.cmake b/testall.cmake index 2c6868faa..fedbdf273 100644 --- a/testall.cmake +++ b/testall.cmake @@ -1,4 +1,4 @@ -execute_process(COMMAND /bin/sh -c "${CMAKE_BINARY_DIR}/bin/maxscale -c ${CMAKE_BINARY_DIR} &>/dev/null") +execute_process(COMMAND /bin/sh -c "${CMAKE_BINARY_DIR}/bin/maxscale -c ${CMAKE_BINARY_DIR} &>/dev/null 2> /dev/null > /dev/null") execute_process(COMMAND make test RESULT_VARIABLE RVAL) execute_process(COMMAND killall maxscale) if(NOT RVAL EQUAL 0)