diff options
author | Adrien M <adrienx.martin@intel.com> | 2015-03-20 19:03:32 +0100 |
---|---|---|
committer | Eric Laurent <elaurent@google.com> | 2015-04-24 13:39:12 -0700 |
commit | 5aaddd16f2aabccf07687f1761567eb6455abe61 (patch) | |
tree | 62a4adda1e9f000614247e06f88db3359e637961 /test | |
parent | 19aa05b33990302d2388b8c90eeb71a3509e6320 (diff) | |
download | external_parameter-framework-5aaddd16f2aabccf07687f1761567eb6455abe61.zip external_parameter-framework-5aaddd16f2aabccf07687f1761567eb6455abe61.tar.gz external_parameter-framework-5aaddd16f2aabccf07687f1761567eb6455abe61.tar.bz2 |
Dissociate 'make test' & 'make install'
Possibility to run the test without having to lunch the 'make install'
command.
Signed-off-by: Adrien M <adrienx.martin@intel.com>
Diffstat (limited to 'test')
-rw-r--r-- | test/test-fixed-point-parameter/CMakeLists.txt | 3 | ||||
-rw-r--r-- | test/tokenizer/CMakeLists.txt | 6 |
2 files changed, 8 insertions, 1 deletions
diff --git a/test/test-fixed-point-parameter/CMakeLists.txt b/test/test-fixed-point-parameter/CMakeLists.txt index b9c8af3..64b51f3 100644 --- a/test/test-fixed-point-parameter/CMakeLists.txt +++ b/test/test-fixed-point-parameter/CMakeLists.txt @@ -32,4 +32,7 @@ if (BUILD_TESTING) add_test(NAME fix_point_parameter WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} COMMAND ${python2} Main.py) + + # Custom function defined in the top-level CMakeLists + set_test_env(fix_point_parameter) endif() diff --git a/test/tokenizer/CMakeLists.txt b/test/tokenizer/CMakeLists.txt index f68f6a3..8a00cb9 100644 --- a/test/tokenizer/CMakeLists.txt +++ b/test/tokenizer/CMakeLists.txt @@ -44,5 +44,9 @@ if(BUILD_TESTING) include_directories(${PROJECT_SOURCE_DIR}/utility) target_link_libraries(tokenizerTest pfw_utility) - add_test(tokenizerTest tokenizerTest) + add_test(NAME tokenizerTest + COMMAND tokenizerTest) + + # Custom function defined in the top-level CMakeLists + set_test_env(tokenizerTest) endif() |