summaryrefslogtreecommitdiffstats
path: root/tests/copy_tests.cmake
diff options
context:
space:
mode:
authorPetr Mrázek <peterix@gmail.com>2016-04-13 01:24:55 +0200
committerPetr Mrázek <peterix@gmail.com>2016-05-01 00:01:39 +0200
commite8ba5dafc63de65ed8a469353b808e391633f0fc (patch)
tree1e7d8c340bd68ae339904dde867875226f10b150 /tests/copy_tests.cmake
parented3884fd38c26185522248994c79c9525b8892ad (diff)
downloadMultiMC-e8ba5dafc63de65ed8a469353b808e391633f0fc.tar
MultiMC-e8ba5dafc63de65ed8a469353b808e391633f0fc.tar.gz
MultiMC-e8ba5dafc63de65ed8a469353b808e391633f0fc.tar.lz
MultiMC-e8ba5dafc63de65ed8a469353b808e391633f0fc.tar.xz
MultiMC-e8ba5dafc63de65ed8a469353b808e391633f0fc.zip
NOISSUE remove dead unit tests and reorganize CMake code related to unit tests
Diffstat (limited to 'tests/copy_tests.cmake')
-rw-r--r--tests/copy_tests.cmake13
1 files changed, 0 insertions, 13 deletions
diff --git a/tests/copy_tests.cmake b/tests/copy_tests.cmake
deleted file mode 100644
index 0af7f730..00000000
--- a/tests/copy_tests.cmake
+++ /dev/null
@@ -1,13 +0,0 @@
-file(GLOB data_files "${MultiMC_TEST_DATA_PATH_SOURCE}/*")
-foreach(data_file ${data_files})
- get_filename_component(filename ${data_file} NAME)
- configure_file(
- ${data_file}
- ${MultiMC_TEST_DATA_PATH}/${filename}
- @ONLY
- NEWLINE_STYLE LF
- )
-endforeach()
-
-file(GLOB raw_data_files "${MultiMC_TEST_DATA_PATH_SOURCE_RAW}/*")
-file(COPY ${raw_data_files} DESTINATION ${MultiMC_TEST_DATA_PATH}/)