You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
567 B
16 lines
567 B
cmake_minimum_required (VERSION 3.5)
|
|
project(CTestTestParallel)
|
|
include(CTest)
|
|
|
|
add_executable (LockFile lockFile.c)
|
|
|
|
add_test (TestRunSerial1 LockFile)
|
|
add_test (TestRunSerial2 LockFile)
|
|
set_tests_properties(TestRunSerial1 TestRunSerial2 PROPERTIES RUN_SERIAL true)
|
|
|
|
add_test (TestProcessorsGreaterThanMPL1 LockFile)
|
|
add_test (TestProcessorsGreaterThanMPL2 LockFile)
|
|
set_tests_properties(TestProcessorsGreaterThanMPL1 PROPERTIES PROCESSORS 10)
|
|
set_tests_properties(TestProcessorsGreaterThanMPL1 PROPERTIES DEPENDS
|
|
TestProcessorsGreaterThanMPL2)
|