mirror of
https://github.com/reactos/CMake.git
synced 2024-12-15 15:48:52 +00:00
024e25e485
Move the test cases from Tests/CMakeTests/ConfigureFileTest.cmake.in over to use the RunCMake.configure_file infrastructure. This does much more robust verification of CMake output for each test case, and would have caught the regression fixed in our parent commit.
18 lines
518 B
CMake
18 lines
518 B
CMake
set(file_name ${CMAKE_CURRENT_BINARY_DIR}/NewLineStyle.txt)
|
|
|
|
function(test_eol style in out)
|
|
file(WRITE ${file_name} "${in}")
|
|
configure_file(${file_name} ${file_name}.out NEWLINE_STYLE ${style})
|
|
file(READ ${file_name}.out new HEX)
|
|
if(NOT "${new}" STREQUAL "${out}")
|
|
message(FATAL_ERROR "No ${style} line endings")
|
|
endif()
|
|
endfunction()
|
|
|
|
test_eol(DOS "a\n" "610d0a")
|
|
test_eol(WIN32 "b\n" "620d0a")
|
|
test_eol(CRLF "c\n" "630d0a")
|
|
|
|
test_eol(UNIX "d\n" "640a")
|
|
test_eol(LF "e\n" "650a")
|