mirror of
https://github.com/MariaDB/server.git
synced 2025-01-22 06:44:16 +01:00
refs #4871 generate a different build name for coverage tests so they don't clobber the debug runs
git-svn-id: file:///svn/toku/tokudb@47021 c7de825b-a66e-492c-adef-691d508d4ae1
This commit is contained in:
parent
e27f78b0dd
commit
9c9aa70008
1 changed files with 6 additions and 1 deletions
|
@ -110,8 +110,13 @@ whoami(user)
|
|||
|
||||
## construct SITE, seems to have to happen before include(CTest)
|
||||
set(SITE "${user}@${host}")
|
||||
if (USE_GCOV)
|
||||
set(buildname_build_type "Coverage")
|
||||
else (USE_GCOV)
|
||||
set(buildname_build_type "${CMAKE_BUILD_TYPE}")
|
||||
endif (USE_GCOV)
|
||||
## construct BUILDNAME, seems to have to happen before include(CTest)
|
||||
set(BUILDNAME "${branchname} ${CMAKE_BUILD_TYPE} ${CMAKE_SYSTEM} ${machine_type} ${CMAKE_CXX_COMPILER_ID} ${real_cxx_compiler} ${CMAKE_CXX_COMPILER_VERSION}" CACHE STRING "CTest build name" FORCE)
|
||||
set(BUILDNAME "${branchname} ${buildname_build_type} ${CMAKE_SYSTEM} ${machine_type} ${CMAKE_CXX_COMPILER_ID} ${real_cxx_compiler} ${CMAKE_CXX_COMPILER_VERSION}" CACHE STRING "CTest build name" FORCE)
|
||||
|
||||
include(CTest)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue