diff options
author | Renato Araujo Oliveira Filho <renato.filho@canonical.com> | 2012-11-23 12:41:03 +0000 |
---|---|---|
committer | Tarmac <> | 2012-11-23 12:41:03 +0000 |
commit | de8eea63b919b81132895dfe04ed676778c53f6f (patch) | |
tree | 44c6e55fdfc9dcafa916c7dbc4c737fee80019e9 /tests | |
parent | 374e999b82edf8ac36bf88521102bc87c30c596c (diff) | |
parent | 560f14fe8484c0b0cf935147a050ab9df241b2a9 (diff) | |
download | qmenumodel-de8eea63b919b81132895dfe04ed676778c53f6f.tar.gz qmenumodel-de8eea63b919b81132895dfe04ed676778c53f6f.tar.bz2 qmenumodel-de8eea63b919b81132895dfe04ed676778c53f6f.zip |
Added 'TEST_XML_OUTPUT' option on cmake to enable/disalbe test output in xml.
OBS: The default value is On.
Approved by Michael Zanetti, PS Jenkins bot.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/client/CMakeLists.txt | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/tests/client/CMakeLists.txt b/tests/client/CMakeLists.txt index d946fad..392437c 100644 --- a/tests/client/CMakeLists.txt +++ b/tests/client/CMakeLists.txt @@ -8,9 +8,15 @@ macro(declare_test testname) ${GIO_LDFLAGS}
)
+ if(TEST_XML_OUTPUT)
+ set(TEST_ARGS -p -xunitxml -p -o -p test_${testname}.xml)
+ else()
+ set(TEST_ARGS "")
+ endif()
+
add_test(${testname}
${DBUS_RUNNER}
- --task ${CMAKE_CURRENT_BINARY_DIR}/${testname} -p -xunitxml -p -o -p test_${testname}.xml --task-name Client
+ --task ${CMAKE_CURRENT_BINARY_DIR}/${testname} ${TEST_ARGS} --task-name Client
--task ${CMAKE_CURRENT_SOURCE_DIR}/script_${testname}.py --task-name Server
--ignore-return)
set_tests_properties(${testname} PROPERTIES
|