summaryrefslogtreecommitdiff
path: root/Tests/CMakeTests/CMakeHostSystemInformationTest.cmake.in
blob: 3294a2f0dc7fef79afc339dfc61b799336b405e4 (plain)
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
set(BadArg1-RESULT 1)
set(BadArg1-STDERR "missing RESULT specification")
set(BadArg2-RESULT 1)
set(BadArg2-STDERR "missing QUERY specification")
set(BadArg3-RESULT 1)
set(BadArg3-STDERR "does not recognize <key> FOOBAR")
set(QueryList-RESULT 0)
set(QueryList-STDERR "\\[[0-9]+;[0-9]+\\]")

function(try_and_print key)
	cmake_host_system_information(RESULT RESULT QUERY ${key})
	message(STATUS "[${key}] [${RESULT}]")
endfunction()

message("CTEST_FULL_OUTPUT (Avoid ctest truncation of output)")

try_and_print(NUMBER_OF_LOGICAL_CORES)
try_and_print(NUMBER_OF_PHYSICAL_CORES)
try_and_print(HOSTNAME)
try_and_print(FQDN)
try_and_print(TOTAL_VIRTUAL_MEMORY)
try_and_print(AVAILABLE_VIRTUAL_MEMORY)
try_and_print(TOTAL_PHYSICAL_MEMORY)
try_and_print(AVAILABLE_PHYSICAL_MEMORY)

include("@CMAKE_CURRENT_SOURCE_DIR@/CheckCMakeTest.cmake")

check_cmake_test(CMakeHostSystemInformation
	BadArg1
	BadArg2
	BadArg3
	QueryList
)