Browse Source

Tests: Allow RunCMake.CTestCommandLine/TestOutputSize to have larger file

Kyle Edwards 2 years ago
parent
commit
de446077f7
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Tests/RunCMake/CTestCommandLine/TestOutputSize-check.cmake

+ 1 - 1
Tests/RunCMake/CTestCommandLine/TestOutputSize-check.cmake

@@ -1,6 +1,6 @@
 file(GLOB test_xml_file "${RunCMake_TEST_BINARY_DIR}/Testing/*/Test.xml")
 if(test_xml_file)
-  file(READ "${test_xml_file}" test_xml LIMIT 4096)
+  file(READ "${test_xml_file}" test_xml LIMIT 8192)
   if("${test_xml}" MATCHES [[(<Test Status="passed">.*</Test>).*(<Test Status="failed">.*</Test>)]])
     set(test_passed "${CMAKE_MATCH_1}")
     set(test_failed "${CMAKE_MATCH_2}")