Added new Make target for testing MaxScale's core parts.

This target doesn't need a running MaxScale and only executes core, log_manager and query_classifier unit tests.
This commit is contained in:
Markus Makela
2015-03-19 11:56:40 +02:00
parent f383f745cb
commit 15262f3fbf
6 changed files with 39 additions and 32 deletions

8
cmake/testall.cmake Normal file
View File

@ -0,0 +1,8 @@
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)
message(FATAL_ERROR "Test suite failed with status: ${RVAL}")
else()
message(STATUS "Test exited with status: ${RVAL}")
endif()