aboutsummaryrefslogtreecommitdiff
path: root/tests/run-compatibility-test.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'tests/run-compatibility-test.cmake')
-rw-r--r--tests/run-compatibility-test.cmake4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/run-compatibility-test.cmake b/tests/run-compatibility-test.cmake
index 0cc14d2..d77f77f 100644
--- a/tests/run-compatibility-test.cmake
+++ b/tests/run-compatibility-test.cmake
@@ -3,7 +3,7 @@ get_filename_component(OUTPUT_NAME "${REFERENCE_DATA}" NAME)
execute_process(
WORKING_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}"
- COMMAND ${BROTLI_WRAPPER} ${BROTLI_CLI} --force --decompress --input ${INPUT} --output ${CMAKE_CURRENT_BINARY_DIR}/${OUTPUT_NAME}.unbro
+ COMMAND ${BROTLI_WRAPPER} ${BROTLI_CLI} --force --decompress ${INPUT} --output=${CMAKE_CURRENT_BINARY_DIR}/${OUTPUT_NAME}.unbr
RESULT_VARIABLE result)
if(result)
message(FATAL_ERROR "Decompression failed")
@@ -25,4 +25,4 @@ function(test_file_equality f1 f2)
endif()
endfunction()
-test_file_equality("${REFERENCE_DATA}" "${CMAKE_CURRENT_BINARY_DIR}/${OUTPUT_NAME}.unbro")
+test_file_equality("${REFERENCE_DATA}" "${CMAKE_CURRENT_BINARY_DIR}/${OUTPUT_NAME}.unbr")