14 lines
517 B
CMake
Raw Normal View History

2010-06-23 01:18:35 +03:00
cmake_minimum_required (VERSION 2.6)
2013-03-16 19:13:01 +02:00
project(CTestTestResourceLock)
include(CTest)
2010-06-23 01:18:35 +03:00
2013-03-16 19:13:01 +02:00
add_executable (LockFile lockFile.c)
2010-06-23 01:18:35 +03:00
2013-03-16 19:13:01 +02:00
add_test (TestLockedFile1.1 LockFile locked1.txt)
add_test (TestLockedFile1.2 LockFile locked1.txt)
set_tests_properties(TestLockedFile1.1 TestLockedFile1.2 PROPERTIES RESOURCE_LOCK "locked1.txt")
2010-06-23 01:18:35 +03:00
2013-03-16 19:13:01 +02:00
add_test (TestLockedFile2.1 LockFile locked2.txt)
add_test (TestLockedFile2.2 LockFile locked2.txt)
set_tests_properties(TestLockedFile2.1 TestLockedFile2.2 PROPERTIES RESOURCE_LOCK "locked2.txt")