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.
14 lines
520 B
14 lines
520 B
cmake_minimum_required (VERSION 2.8.12)
|
|
project(CTestTestResourceLock)
|
|
include(CTest)
|
|
|
|
add_executable (LockFile lockFile.c)
|
|
|
|
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")
|
|
|
|
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")
|