This repository has been archived by the owner on May 29, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 185
/
user.ctest
70 lines (61 loc) · 2.31 KB
/
user.ctest
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
# This is a CTest script for a user build. It is meant to be called like so:
# ctest -S <path-to-script> -V
#
# It uses the current dir as the root of the repo to test
# and uses the build-hostname-branch as the build dir
#
# Find the name of the git branch
execute_process(
COMMAND git branch --no-color
COMMAND sed -ne "s/^* \\(.*\\)/\\1/p"
OUTPUT_VARIABLE branch OUTPUT_STRIP_TRAILING_WHITESPACE )
# The $ENV{HOSTNAME} var doesn't seem to work. Hmm.
if(${CMAKE_SYSTEM_NAME} MATCHES "SunOS")
execute_process(
COMMAND hostname
OUTPUT_VARIABLE uname -n OUTPUT_STRIP_TRAILING_WHITESPACE )
else()
execute_process(
COMMAND hostname
OUTPUT_VARIABLE hostname OUTPUT_STRIP_TRAILING_WHITESPACE )
endif()
# Figure out how many cores to use
if (${CMAKE_SYSTEM_NAME} MATCHES "SunOS" )
execute_process(
COMMAND kstat cpu_info
COMMAND grep instance
COMMAND wc -l
OUTPUT_VARIABLE num_cores )
elseif( ${CMAKE_SYSTEM_NAME} MATCHES "Darwin" )
execute_process(
COMMAND sysctl -n hw.ncpu
OUTPUT_VARIABLE num_cores )
elseif( ${CMAKE_SYSTEM_NAME} MATCHES "Linux" )
execute_process(
COMMAND nproc
OUTPUT_VARIABLE num_cores)
math(EXPR num_cores "${num_cores} + 1" )
elseif( ${CMAKE_SYSTEM_NAME} MATCHES "Windows" )
set( num_cores 1 )
else()
message( ERROR "CMAKE_SYSTEM_NAME = ${CMAKE_SYSTEM_NAME}, not supported. Currently supported: Linux, Darwin, SunOS, Windows" )
endif()
math(EXPR num_threads "${num_cores}/2")
set( CTEST_BUILD_FLAGS -j${num_threads} )
set( CTEST_SOURCE_DIRECTORY "$ENV{PWD}" )
set( CTEST_BUILD_NAME "${hostname}-${branch}" )
set( CTEST_BINARY_DIRECTORY "$ENV{PWD}/build-${CTEST_BUILD_NAME}" )
set( CTEST_SITE "${BUILD_NAME}" )
set( CTEST_CMAKE_GENERATOR "Unix Makefiles" )
set( CTEST_CONFIGURATION_TYPE "Experimental" )
set( DEBUG_VALUE "false" )
find_program( CTEST_GIT_COMMAND NAMES git )
find_program( CTEST_CMAKE_COMMAND NAMES cmake )
set( CTEST_CMAKE_COMMAND "${CTEST_CMAKE_COMMAND} -Wno-dev "
"-DDEBUG_SWITCH=${DEBUG_VALUE} -DTEST_SWITCH=ON -DBUILD_EXT=ON" )
set( CTEST_CONFIGURE_COMMAND "${CTEST_CMAKE_COMMAND} \"-G${CTEST_CMAKE_GENERATOR}\"" )
set( CTEST_CONFIGURE_COMMAND "${CTEST_CONFIGURE_COMMAND} ${CTEST_SOURCE_DIRECTORY}" )
ctest_start ( "Experimental" )
ctest_configure()
ctest_build()
ctest_test()