mirror of
https://github.com/Kitware/CMake.git
synced 2026-03-14 05:20:50 -05:00
Tests: Avoid duplicate rules in ExternalData test
In commit v3.7.0-rc1~158^2 (ExternalData: Tolerate files duplicated across multiple targets, 2016-07-07) we added a test case for repeating the same data file reference in three different targets in the same directory in order to exercise its corresponding fix. However, we re-used the top-level `Data.dat` file which is already produced by an unrelated test case. `ninja` diagnoses the duplicate rule. Update the test to use a dedicated data file name for the three-times repeated case to avoid this conflict. It still covers the original purpose of the test.
This commit is contained in:
@@ -2,21 +2,21 @@
|
||||
ExternalData_Add_Test(Data5.A
|
||||
NAME Data5Check.A
|
||||
COMMAND ${CMAKE_COMMAND}
|
||||
-D Data5=DATA{../Data.dat}
|
||||
-D Data5=DATA{Data5.dat}
|
||||
-P ${CMAKE_CURRENT_SOURCE_DIR}/Data5Check.cmake
|
||||
)
|
||||
ExternalData_Add_Target(Data5.A)
|
||||
ExternalData_Add_Test(Data5.B
|
||||
NAME Data5Check.B
|
||||
COMMAND ${CMAKE_COMMAND}
|
||||
-D Data5=DATA{../Data.dat}
|
||||
-D Data5=DATA{Data5.dat}
|
||||
-P ${CMAKE_CURRENT_SOURCE_DIR}/Data5Check.cmake
|
||||
)
|
||||
ExternalData_Add_Target(Data5.B)
|
||||
ExternalData_Add_Test(Data5.C
|
||||
NAME Data5Check.C
|
||||
COMMAND ${CMAKE_COMMAND}
|
||||
-D Data5=DATA{../Data.dat}
|
||||
-D Data5=DATA{Data5.dat}
|
||||
-P ${CMAKE_CURRENT_SOURCE_DIR}/Data5Check.cmake
|
||||
)
|
||||
ExternalData_Add_Target(Data5.C)
|
||||
|
||||
1
Tests/Module/ExternalData/Data5/Data5.dat.md5
Normal file
1
Tests/Module/ExternalData/Data5/Data5.dat.md5
Normal file
@@ -0,0 +1 @@
|
||||
8c018830e3efa5caf3c7415028335a57
|
||||
Reference in New Issue
Block a user