Browse Source

Update tests that expect uncompressed output

Pass --no-compressed-output to ctest for tests that expect uncompressed output.
Zack Galbreath 9 years ago
parent
commit
f725b20be3

+ 1 - 0
Tests/RunCMake/CTestCommandLine/RunCMakeTest.cmake

@@ -135,6 +135,7 @@ function(run_TestOutputSize)
 ")
   run_cmake_command(TestOutputSize
     ${CMAKE_CTEST_COMMAND} -M Experimental -T Test
+                           --no-compress-output
                            --test-output-size-passed 10
                            --test-output-size-failed 12
     )

+ 1 - 0
Tests/RunCMake/RunCTest.cmake

@@ -12,6 +12,7 @@ function(run_ctest CASE_NAME)
     -S ${RunCMake_BINARY_DIR}/${CASE_NAME}/test.cmake
     -V
     --output-log ${RunCMake_BINARY_DIR}/${CASE_NAME}-build/testOutput.log
+    --no-compress-output
     ${ARGN}
     )
 endfunction()