mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-05 21:31:08 -06:00
This needlessly produces warnings during the test runs that no-one sees but that are distracting when actually inspecting the logs.
14 lines
520 B
CMake
14 lines
520 B
CMake
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")
|