cmake/Tests/CTestTestParallel/CMakeLists.txt

16 lines
570 B
CMake
Raw Normal View History

2021-09-14 00:13:48 +02:00
cmake_minimum_required (VERSION 2.8.12)
2013-03-16 19:13:01 +02:00
project(CTestTestParallel)
include(CTest)
2009-10-04 10:30:41 +03:00
2013-03-16 19:13:01 +02:00
add_executable (LockFile lockFile.c)
2009-10-04 10:30:41 +03:00
2013-03-16 19:13:01 +02:00
add_test (TestRunSerial1 LockFile)
add_test (TestRunSerial2 LockFile)
set_tests_properties(TestRunSerial1 TestRunSerial2 PROPERTIES RUN_SERIAL true)
2009-10-04 10:30:41 +03:00
2013-03-16 19:13:01 +02:00
add_test (TestProcessorsGreaterThanMPL1 LockFile)
add_test (TestProcessorsGreaterThanMPL2 LockFile)
set_tests_properties(TestProcessorsGreaterThanMPL1 PROPERTIES PROCESSORS 10)
set_tests_properties(TestProcessorsGreaterThanMPL1 PROPERTIES DEPENDS
2010-06-28 22:39:51 +03:00
TestProcessorsGreaterThanMPL2)