-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
cmake: allow running the tests in parallel like in the Makefile (#102)
Allow running tests in parallel by default by setting the CTEST_PARALLEL_LEVEL environment variable. The functionality is added using a CMake script in order to determine options when running the tests (rather than when configuring CMake) in compatibility with the Makefile (in particular -- the `J` and `TEST_TMPDIR` environment variables). Test Plan: run the check target using different generators (ninja, make) to see the improvement in test runtime.
- Loading branch information
Showing
2 changed files
with
78 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
# Copyright (C) 2022 Speedb Ltd. All rights reserved. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
# Choose the amount of tests to run in parallel if CTEST_PARALLEL_LEVEL wasn't set | ||
if(NOT DEFINED ENV{CTEST_PARALLEL_LEVEL}) | ||
# Compatibility with the Makefile: support the `J` environment variable | ||
if(DEFINED ENV{J} AND "$ENV{J}" GREATER 0) | ||
set(ENV{CTEST_PARALLEL_LEVEL} ${ENV{J}}) | ||
else() | ||
include(ProcessorCount) | ||
ProcessorCount(NCPU) | ||
if(NOT NCPU EQUAL 0) | ||
set(ENV{CTEST_PARALLEL_LEVEL} ${NCPU}) | ||
endif() | ||
endif() | ||
endif() | ||
|
||
if(NOT DEFINED ENV{TEST_TMPDIR} AND "${CMAKE_HOST_SYSTEM_NAME}" STREQUAL "Linux") | ||
# Use /dev/shm if the sticky bit is set | ||
if(IS_DIRECTORY /dev/shm) | ||
execute_process(COMMAND test -k /dev/shm RESULT_VARIABLE status OUTPUT_QUIET ERROR_QUIET) | ||
if(status EQUAL 0) | ||
set(test_dir /dev/shm) | ||
endif() | ||
endif() | ||
# Fall back to /tmp if exists | ||
if(NOT DEFINED test_dir AND IS_DIRECTORY /tmp) | ||
set(test_dir /tmp) | ||
endif() | ||
# Create a temporary directory under the test location that we determined | ||
if(DEFINED test_dir) | ||
execute_process( | ||
COMMAND "mktemp" "-d" "${test_dir}/rocksdb.XXXX" | ||
RESULT_VARIABLE status OUTPUT_VARIABLE tmpdir | ||
OUTPUT_STRIP_TRAILING_WHITESPACE) | ||
if (NOT status EQUAL 0) | ||
message(FATAL_ERROR "mkdtemp failed") | ||
endif() | ||
set(ENV{TEST_TMPDIR} ${tmpdir}) | ||
endif() | ||
endif() | ||
|
||
if(DEFINED ENV{TEST_TMPDIR}) | ||
message(STATUS "Running $ENV{CTEST_PARALLEL_LEVEL} tests in parallel in $ENV{TEST_TMPDIR}") | ||
endif() | ||
|
||
# Run all tests, with a timeout of 10 minutes per test and show test output on failure | ||
execute_process(COMMAND ${CMAKE_CTEST_COMMAND} --output-on-failure --timeout 600) |