Files
CMake/Tests/RunCMake/Make/CTestJobServer.make
Brad King 80fe56c481 ctest: Add support for running under a make job server on POSIX systems
Share job slots with the job server by acquiring a token before running
each test, and releasing the token when the test finishes.
2023-12-03 08:30:07 -05:00

12 lines
183 B
Makefile

NoPipe:
env MAKEFLAGS= $(CMAKE_CTEST_COMMAND) -j6
.PHONY: NoPipe
NoTests:
+$(CMAKE_CTEST_COMMAND) -j6 -R NoTests
.PHONY: NoTests
Tests:
+$(CMAKE_CTEST_COMMAND) -j6
.PHONY: Tests