This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "CMake".

The branch, next has been updated
       via  9c73f92cde601f229547ed4795a4d4d351b43a02 (commit)
       via  6a3f01dcaa5420dad4871a2715dd753361c7632f (commit)
      from  966b73f5903810892388aecd379d844e1d830169 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=9c73f92cde601f229547ed4795a4d4d351b43a02
commit 9c73f92cde601f229547ed4795a4d4d351b43a02
Merge: 966b73f 6a3f01d
Author:     Brad King <brad.k...@kitware.com>
AuthorDate: Wed Feb 25 16:33:57 2015 -0500
Commit:     CMake Topic Stage <kwro...@kitware.com>
CommitDate: Wed Feb 25 16:33:57 2015 -0500

    Merge topic 'error_in_read_script' into next
    
    6a3f01dc Revert topic 'error_in_read_script'


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=6a3f01dcaa5420dad4871a2715dd753361c7632f
commit 6a3f01dcaa5420dad4871a2715dd753361c7632f
Author:     Brad King <brad.k...@kitware.com>
AuthorDate: Wed Feb 25 16:33:40 2015 -0500
Commit:     Brad King <brad.k...@kitware.com>
CommitDate: Wed Feb 25 16:33:40 2015 -0500

    Revert topic 'error_in_read_script'
    
    It will be restored with an alternative approach.

diff --git a/Source/CTest/cmCTestCoverageHandler.cxx 
b/Source/CTest/cmCTestCoverageHandler.cxx
index bb31bc7..790e488 100644
--- a/Source/CTest/cmCTestCoverageHandler.cxx
+++ b/Source/CTest/cmCTestCoverageHandler.cxx
@@ -183,7 +183,6 @@ bool cmCTestCoverageHandler::StartCoverageLogFile(
     {
     cmCTestLog(this->CTest, ERROR_MESSAGE, "Cannot open log file: "
       << covLogFilename << std::endl);
-    this->SetScriptErrorOccurred(true);
     return false;
     }
   std::string local_start_time = this->CTest->CurrentTime();
@@ -349,7 +348,6 @@ int cmCTestCoverageHandler::ProcessHandler()
     {
     cmCTestLog(this->CTest, ERROR_MESSAGE,
       "Cannot create LastCoverage.log file" << std::endl);
-    this->SetScriptErrorOccurred(true);
     }
 
   ofs << "Performing coverage: " << elapsed_time_start << std::endl;
@@ -1007,7 +1005,6 @@ int cmCTestCoverageHandler::HandleGCovCoverage(
     {
     cmCTestLog(this->CTest, ERROR_MESSAGE,
       "Could not find gcov." << std::endl);
-    this->SetScriptErrorOccurred(true);
     return 0;
     }
   std::string gcovExtraFlags
diff --git a/Source/CTest/cmCTestGenericHandler.cxx 
b/Source/CTest/cmCTestGenericHandler.cxx
index c16ec2b..81eb0a8 100644
--- a/Source/CTest/cmCTestGenericHandler.cxx
+++ b/Source/CTest/cmCTestGenericHandler.cxx
@@ -23,7 +23,6 @@ cmCTestGenericHandler::cmCTestGenericHandler()
   this->SubmitIndex = 0;
   this->AppendXML = false;
   this->Quiet = false;
-  this->ScriptErrorOccurred = false;
 }
 
 //----------------------------------------------------------------------
diff --git a/Source/CTest/cmCTestGenericHandler.h 
b/Source/CTest/cmCTestGenericHandler.h
index d83ad7b..8567dd7 100644
--- a/Source/CTest/cmCTestGenericHandler.h
+++ b/Source/CTest/cmCTestGenericHandler.h
@@ -90,12 +90,6 @@ public:
   void SetQuiet(bool b) { this->Quiet = b; }
   bool GetQuiet() { return this->Quiet; }
 
-  /**
-   * Get/Set whether or not a script-level error occurred.
-   */
-  bool GetScriptErrorOccurred() { return this->ScriptErrorOccurred; }
-  void SetScriptErrorOccurred(bool b) { this->ScriptErrorOccurred = b; }
-
 protected:
   bool StartResultingXML(cmCTest::Part part,
                          const char* name, cmGeneratedFileStream& xofs);
@@ -103,7 +97,6 @@ protected:
 
   bool AppendXML;
   bool Quiet;
-  bool ScriptErrorOccurred;
   cmSystemTools::OutputOption HandlerVerbose;
   cmCTest *CTest;
   t_StringToString Options;
diff --git a/Source/CTest/cmCTestHandlerCommand.cxx 
b/Source/CTest/cmCTestHandlerCommand.cxx
index 6c4fa63..3003e8a 100644
--- a/Source/CTest/cmCTestHandlerCommand.cxx
+++ b/Source/CTest/cmCTestHandlerCommand.cxx
@@ -141,19 +141,14 @@ bool cmCTestHandlerCommand
   cmSystemTools::ChangeDirectory(
     this->CTest->GetCTestConfiguration("BuildDirectory"));
   int res = handler->ProcessHandler();
-  cmSystemTools::ChangeDirectory(current_dir);
-
-  if (handler->GetScriptErrorOccurred())
-    {
-    cmSystemTools::SetErrorOccured();
-    }
-  else if ( this->Values[ct_RETURN_VALUE] && *this->Values[ct_RETURN_VALUE])
+  if ( this->Values[ct_RETURN_VALUE] && *this->Values[ct_RETURN_VALUE])
     {
     std::ostringstream str;
     str << res;
     this->Makefile->AddDefinition(
       this->Values[ct_RETURN_VALUE], str.str().c_str());
     }
+  cmSystemTools::ChangeDirectory(current_dir);
   return true;
 }
 
diff --git a/Source/CTest/cmCTestMemCheckHandler.cxx 
b/Source/CTest/cmCTestMemCheckHandler.cxx
index c7b2210..061f3fd 100644
--- a/Source/CTest/cmCTestMemCheckHandler.cxx
+++ b/Source/CTest/cmCTestMemCheckHandler.cxx
@@ -175,7 +175,6 @@ int cmCTestMemCheckHandler::PreProcessHandler()
     {
     cmCTestLog(this->CTest, ERROR_MESSAGE,
       "Problem executing pre-memcheck command(s)." << std::endl);
-    this->SetScriptErrorOccurred(true);
     return 0;
     }
   return 1;
@@ -188,7 +187,6 @@ int cmCTestMemCheckHandler::PostProcessHandler()
     {
     cmCTestLog(this->CTest, ERROR_MESSAGE,
       "Problem executing post-memcheck command(s)." << std::endl);
-    this->SetScriptErrorOccurred(true);
     return 0;
     }
   return 1;
@@ -648,7 +646,6 @@ bool cmCTestMemCheckHandler::InitializeMemoryChecking()
             "Cannot find memory checker suppression file: "
             << this->CTest->GetCTestConfiguration(
               "MemoryCheckSuppressionFile") << std::endl);
-          this->SetScriptErrorOccurred(true);
           return false;
           }
         std::string suppressions = "--suppressions="
@@ -674,7 +671,6 @@ bool cmCTestMemCheckHandler::InitializeMemoryChecking()
                      "Cannot find memory checker suppression file: "
                      << this->CTest->GetCTestConfiguration(
                        "MemoryCheckSuppressionFile").c_str() << std::endl);
-          this->SetScriptErrorOccurred(true);
           return false;
           }
         std::string filterFiles = "/FilterFiles="
@@ -746,7 +742,6 @@ bool cmCTestMemCheckHandler::InitializeMemoryChecking()
       cmCTestLog(this->CTest, ERROR_MESSAGE,
         "Do not understand memory checker: " << this->MemoryTester
         << std::endl);
-      this->SetScriptErrorOccurred(true);
       return false;
     }
 
@@ -1295,7 +1290,6 @@ void cmCTestMemCheckHandler::TestOutputFileNames(int test,
       std::string log = "Cannot find memory tester output file: "
         + ofile;
       cmCTestLog(this->CTest, ERROR_MESSAGE, log.c_str() << std::endl);
-      this->SetScriptErrorOccurred(true);
       ofile = "";
       }
     else
@@ -1309,7 +1303,6 @@ void cmCTestMemCheckHandler::TestOutputFileNames(int test,
     std::string log = "Cannot find memory tester output file: "
       + ofile;
     cmCTestLog(this->CTest, ERROR_MESSAGE, log.c_str() << std::endl);
-    this->SetScriptErrorOccurred(true);
     ofile = "";
     }
   files.push_back(ofile);
diff --git a/Source/CTest/cmCTestSubmitHandler.cxx 
b/Source/CTest/cmCTestSubmitHandler.cxx
index 36ef199..d585863 100644
--- a/Source/CTest/cmCTestSubmitHandler.cxx
+++ b/Source/CTest/cmCTestSubmitHandler.cxx
@@ -929,7 +929,7 @@ bool cmCTestSubmitHandler::SubmitUsingCP(
                << "\tNumber of files: " << files.size() << "\n"
                << "\tremoteprefix: " << remoteprefix << "\n"
                << "\tdestination: " << destination << std::endl);
-    return false;
+    return 0;
     }
 
   cmCTest::SetOfStrings::const_iterator file;
@@ -1097,14 +1097,12 @@ int 
cmCTestSubmitHandler::HandleCDashUploadFile(std::string const& file,
     {
     cmCTestLog(this->CTest, ERROR_MESSAGE,
                "Upload file not specified\n");
-    this->SetScriptErrorOccurred(true);
     return -1;
     }
   if (!cmSystemTools::FileExists(file))
     {
     cmCTestLog(this->CTest, ERROR_MESSAGE,
                "Upload file not found: '" << file << "'\n");
-    this->SetScriptErrorOccurred(true);
     return -1;
     }
   cmCTestCurl curl(this->CTest);
@@ -1122,7 +1120,6 @@ int 
cmCTestSubmitHandler::HandleCDashUploadFile(std::string const& file,
     {
     cmCTestLog(this->CTest, ERROR_MESSAGE,
                "Only http and https are supported for CDASH_UPLOAD\n");
-    this->SetScriptErrorOccurred(true);
     return -1;
     }
   char md5sum[33];
@@ -1165,7 +1162,6 @@ int 
cmCTestSubmitHandler::HandleCDashUploadFile(std::string const& file,
     {
     cmCTestLog(this->CTest, ERROR_MESSAGE,
                "Error in HttpRequest\n" << response);
-    this->SetScriptErrorOccurred(true);
     return -1;
     }
   cmCTestOptionalLog(this->CTest, HANDLER_VERBOSE_OUTPUT,
@@ -1177,7 +1173,6 @@ int 
cmCTestSubmitHandler::HandleCDashUploadFile(std::string const& file,
     cmCTestLog(this->CTest, ERROR_MESSAGE,
                "error parsing json string [" << response << "]\n"
                << reader.getFormattedErrorMessages() << "\n");
-    this->SetScriptErrorOccurred(true);
     return -1;
     }
   if(json["status"].asInt() != 0)
@@ -1185,7 +1180,6 @@ int 
cmCTestSubmitHandler::HandleCDashUploadFile(std::string const& file,
     cmCTestLog(this->CTest, ERROR_MESSAGE,
                "Bad status returned from CDash: "
                << json["status"].asInt());
-    this->SetScriptErrorOccurred(true);
     return -1;
     }
   if(json["datafilesmd5"].isArray())
@@ -1204,7 +1198,6 @@ int 
cmCTestSubmitHandler::HandleCDashUploadFile(std::string const& file,
     cmCTestLog(this->CTest, ERROR_MESSAGE,
                "bad datafilesmd5 value in response "
                << response << "\n");
-    this->SetScriptErrorOccurred(true);
     return -1;
     }
 
@@ -1219,7 +1212,6 @@ int 
cmCTestSubmitHandler::HandleCDashUploadFile(std::string const& file,
     cmCTestLog(this->CTest, ERROR_MESSAGE,
                "error uploading to CDash. "
                << file << " " << url << " " << fstr.str());
-    this->SetScriptErrorOccurred(true);
     return -1;
     }
   if(!reader.parse(response, json))
@@ -1227,7 +1219,6 @@ int 
cmCTestSubmitHandler::HandleCDashUploadFile(std::string const& file,
     cmCTestLog(this->CTest, ERROR_MESSAGE,
                "error parsing json string [" << response << "]\n"
                << reader.getFormattedErrorMessages() << "\n");
-    this->SetScriptErrorOccurred(true);
     return -1;
     }
   cmCTestOptionalLog(this->CTest, HANDLER_VERBOSE_OUTPUT,
@@ -1258,7 +1249,6 @@ int cmCTestSubmitHandler::ProcessHandler()
     cmCTestLog(this->CTest, ERROR_MESSAGE,
       "Cannot find BuildDirectory  key in the DartConfiguration.tcl"
       << std::endl);
-    this->SetScriptErrorOccurred(true);
     return -1;
     }
 
@@ -1467,7 +1457,6 @@ int cmCTestSubmitHandler::ProcessHandler()
         "   Problems when submitting via FTP"
         << std::endl);
       ofs << "   Problems when submitting via FTP" << std::endl;
-      this->SetScriptErrorOccurred(true);
       return -1;
       }
     if(!this->CDash)
@@ -1485,7 +1474,6 @@ int cmCTestSubmitHandler::ProcessHandler()
         cmCTestLog(this->CTest, ERROR_MESSAGE,
                    "   Problems when triggering via HTTP" << std::endl);
         ofs << "   Problems when triggering via HTTP" << std::endl;
-        this->SetScriptErrorOccurred(true);
         return -1;
         }
       cmCTestOptionalLog(this->CTest, HANDLER_OUTPUT,
@@ -1529,7 +1517,6 @@ int cmCTestSubmitHandler::ProcessHandler()
       cmCTestLog(this->CTest, ERROR_MESSAGE,
         "   Problems when submitting via HTTP" << std::endl);
       ofs << "   Problems when submitting via HTTP" << std::endl;
-      this->SetScriptErrorOccurred(true);
       return -1;
       }
     if(!this->CDash)
@@ -1545,7 +1532,6 @@ int cmCTestSubmitHandler::ProcessHandler()
         cmCTestLog(this->CTest, ERROR_MESSAGE,
                    "   Problems when triggering via HTTP" << std::endl);
         ofs << "   Problems when triggering via HTTP" << std::endl;
-        this->SetScriptErrorOccurred(true);
         return -1;
         }
       }
@@ -1581,7 +1567,6 @@ int cmCTestSubmitHandler::ProcessHandler()
       cmCTestLog(this->CTest, ERROR_MESSAGE,
         "   Problems when submitting via XML-RPC" << std::endl);
       ofs << "   Problems when submitting via XML-RPC" << std::endl;
-      this->SetScriptErrorOccurred(true);
       return -1;
       }
     cmCTestOptionalLog(this->CTest, HANDLER_OUTPUT, "   Submission successful"
@@ -1592,7 +1577,6 @@ int cmCTestSubmitHandler::ProcessHandler()
     cmCTestLog(this->CTest, ERROR_MESSAGE,
                "   Submission method \"xmlrpc\" not compiled into CTest!"
                << std::endl);
-    this->SetScriptErrorOccurred(true);
     return -1;
 #endif
     }
@@ -1621,7 +1605,6 @@ int cmCTestSubmitHandler::ProcessHandler()
         "   Problems when submitting via SCP"
         << std::endl);
       ofs << "   Problems when submitting via SCP" << std::endl;
-      this->SetScriptErrorOccurred(true);
       return -1;
       }
     cmSystemTools::ChangeDirectory(oldWorkingDirectory);
@@ -1655,7 +1638,6 @@ int cmCTestSubmitHandler::ProcessHandler()
         "   Problems when submitting via CP"
         << std::endl);
       ofs << "   Problems when submitting via cp" << std::endl;
-      this->SetScriptErrorOccurred(true);
       return -1;
       }
     cmSystemTools::ChangeDirectory(oldWorkingDirectory);
@@ -1667,7 +1649,6 @@ int cmCTestSubmitHandler::ProcessHandler()
 
   cmCTestLog(this->CTest, ERROR_MESSAGE, "   Unknown submission method: \""
     << dropMethod << "\"" << std::endl);
-  this->SetScriptErrorOccurred(true);
   return -1;
 }
 
diff --git a/Source/CTest/cmCTestUpdateHandler.cxx 
b/Source/CTest/cmCTestUpdateHandler.cxx
index 57e9216..b18786a 100644
--- a/Source/CTest/cmCTestUpdateHandler.cxx
+++ b/Source/CTest/cmCTestUpdateHandler.cxx
@@ -204,7 +204,6 @@ int cmCTestUpdateHandler::ProcessHandler()
     cmCTestLog(this->CTest, ERROR_MESSAGE,
       "Cannot find SourceDirectory  key in the DartConfiguration.tcl"
       << std::endl);
-    this->SetScriptErrorOccurred(true);
     return -1;
     }
 
@@ -254,7 +253,6 @@ int cmCTestUpdateHandler::ProcessHandler()
     {
     cmCTestLog(this->CTest, ERROR_MESSAGE, "Cannot open log file"
       << std::endl);
-    this->SetScriptErrorOccurred(true);
     return -1;
     }
   std::string start_time = this->CTest->CurrentTime();
@@ -320,14 +318,12 @@ int cmCTestUpdateHandler::ProcessHandler()
     cmCTestLog(this->CTest, ERROR_MESSAGE,
       "   There are modified or conflicting files in the repository"
       << std::endl);
-    this->SetScriptErrorOccurred(true);
     }
   if(!updated)
     {
     os << "Update command failed:\n" << vc->GetUpdateCommandLine();
     cmCTestLog(this->CTest, ERROR_MESSAGE, "   Update command failed: "
                << vc->GetUpdateCommandLine() << "\n");
-    this->SetScriptErrorOccurred(true);
     }
   os << "</UpdateReturnStatus>" << std::endl;
   os << "</Update>" << std::endl;
@@ -428,7 +424,6 @@ bool cmCTestUpdateHandler::SelectVCS()
         }
       e << " configuration key.";
       cmCTestLog(this->CTest, ERROR_MESSAGE, e.str() << std::endl);
-      this->SetScriptErrorOccurred(true);
       return false;
       }
     }
diff --git a/Source/CTest/cmCTestUploadHandler.cxx 
b/Source/CTest/cmCTestUploadHandler.cxx
index 965f88e..579190a 100644
--- a/Source/CTest/cmCTestUploadHandler.cxx
+++ b/Source/CTest/cmCTestUploadHandler.cxx
@@ -42,7 +42,6 @@ int cmCTestUploadHandler::ProcessHandler()
     {
     cmCTestLog(this->CTest, ERROR_MESSAGE,
       "Cannot open Upload.xml file" << std::endl);
-    this->SetScriptErrorOccurred(true);
     return -1;
     }
   std::string buildname = cmCTest::SafeBuildIdField(
diff --git a/Source/cmCTest.cxx b/Source/cmCTest.cxx
index aec943e..e6d3960 100644
--- a/Source/cmCTest.cxx
+++ b/Source/cmCTest.cxx
@@ -3122,6 +3122,7 @@ void cmCTest::Log(int logType, const char* file, int 
line, const char* msg,
       cmCTestLogOutputFileLine(err);
       err << msg;
       err.flush();
+      cmSystemTools::SetErrorOccured();
       break;
     default:
       cmCTestLogOutputFileLine(out);
diff --git a/Tests/RunCMake/ctest_build/BuildCompileError-stderr.txt 
b/Tests/RunCMake/ctest_build/BuildCompileError-stderr.txt
deleted file mode 100644
index d8e63fa..0000000
--- a/Tests/RunCMake/ctest_build/BuildCompileError-stderr.txt
+++ /dev/null
@@ -1 +0,0 @@
-Error\(s\) when building project$
diff --git a/Tests/RunCMake/ctest_build/BuildCompileError-stdout.txt 
b/Tests/RunCMake/ctest_build/BuildCompileError-stdout.txt
deleted file mode 100644
index 1d7c09c..0000000
--- a/Tests/RunCMake/ctest_build/BuildCompileError-stdout.txt
+++ /dev/null
@@ -1,16 +0,0 @@
-Run dashboard with model Experimental
-   Source directory: .*/Tests/RunCMake/ctest_build/BuildCompileError
-   Build directory: .*/Tests/RunCMake/ctest_build/BuildCompileError-build
-   Reading ctest configuration file: 
.*/Tests/RunCMake/ctest_build/BuildCompileError/CTestConfig.cmake
-   Site: test-site
-   Build name: test-build-name
-   Use Experimental tag: [0-9-]+
-Configure project
-   Each . represents 1024 bytes of output
-    . Size of output: [0-9]+K
-Build project
-   Each symbol represents 1024 bytes of output.
-   '!' represents an error and '\*' a warning.
-    [.*!]+ Size of output: [0-9]+K
-   [1-9][0-9]* Compiler errors
-   [0-9]+ Compiler warnings
diff --git a/Tests/RunCMake/ctest_build/CMakeLists.txt.in 
b/Tests/RunCMake/ctest_build/CMakeLists.txt.in
index 97c4ec2..9ba08e9 100644
--- a/Tests/RunCMake/ctest_build/CMakeLists.txt.in
+++ b/Tests/RunCMake/ctest_build/CMakeLists.txt.in
@@ -2,4 +2,3 @@ cmake_minimum_required(VERSION 3.1)
 project(CTestBuild@CASE_NAME@ NONE)
 include(CTest)
 add_test(NAME RunCMakeVersion COMMAND "${CMAKE_COMMAND}" --version)
-@CMAKELISTS_EXTRA_CODE@
diff --git a/Tests/RunCMake/ctest_build/RunCMakeTest.cmake 
b/Tests/RunCMake/ctest_build/RunCMakeTest.cmake
index e2b23c4..5826fe4 100644
--- a/Tests/RunCMake/ctest_build/RunCMakeTest.cmake
+++ b/Tests/RunCMake/ctest_build/RunCMakeTest.cmake
@@ -8,10 +8,3 @@ function(run_ctest_build CASE_NAME)
 endfunction()
 
 run_ctest_build(BuildQuiet QUIET)
-
-set(CMAKELISTS_EXTRA_CODE "
-enable_language(CXX)
-add_executable(compile_error
- \"${RunCMake_SOURCE_DIR}/../../CTestTestFailure/badCode.cxx\")")
-run_ctest_build(BuildCompileError TARGET compile_error)
-set(CMAKELISTS_EXTRA_CODE "")
diff --git a/Tests/RunCMake/ctest_memcheck/DummyBC-result.txt 
b/Tests/RunCMake/ctest_memcheck/DummyBC-result.txt
new file mode 100644
index 0000000..b57e2de
--- /dev/null
+++ b/Tests/RunCMake/ctest_memcheck/DummyBC-result.txt
@@ -0,0 +1 @@
+(-1|255)
diff --git a/Tests/RunCMake/ctest_test/CMakeLists.txt.in 
b/Tests/RunCMake/ctest_test/CMakeLists.txt.in
index 6b3f485..cedf379 100644
--- a/Tests/RunCMake/ctest_test/CMakeLists.txt.in
+++ b/Tests/RunCMake/ctest_test/CMakeLists.txt.in
@@ -2,4 +2,3 @@ cmake_minimum_required(VERSION 3.1)
 project(CTestTest@CASE_NAME@ NONE)
 include(CTest)
 add_test(NAME RunCMakeVersion COMMAND "${CMAKE_COMMAND}" --version)
-@CMAKELISTS_EXTRA_CODE@
diff --git a/Tests/RunCMake/ctest_test/RunCMakeTest.cmake 
b/Tests/RunCMake/ctest_test/RunCMakeTest.cmake
index bb0d5cf..d906290 100644
--- a/Tests/RunCMake/ctest_test/RunCMakeTest.cmake
+++ b/Tests/RunCMake/ctest_test/RunCMakeTest.cmake
@@ -8,10 +8,3 @@ function(run_ctest_test CASE_NAME)
 endfunction()
 
 run_ctest_test(TestQuiet QUIET)
-
-set(CMAKELISTS_EXTRA_CODE "
-add_test(NAME CMakeVersionFail COMMAND \"${CMAKE_COMMAND}\" --version)
-set_tests_properties(CMakeVersionFail PROPERTIES WILL_FAIL TRUE)
-")
-run_ctest_test(TestFail INCLUDE Fail)
-set(CMAKELISTS_EXTRA_CODE "")
diff --git a/Tests/RunCMake/ctest_test/TestFail-stdout.txt 
b/Tests/RunCMake/ctest_test/TestFail-stdout.txt
deleted file mode 100644
index a8d0df6..0000000
--- a/Tests/RunCMake/ctest_test/TestFail-stdout.txt
+++ /dev/null
@@ -1,10 +0,0 @@
-Test project .*/Tests/RunCMake/ctest_test/TestFail-build
-    Start 2: CMakeVersionFail
-1/1 Test #2: CMakeVersionFail .................\*\*\*Failed    [0-9.]+ sec
-
-0% tests passed, 1 tests failed out of 1
-
-Total Test time \(real\) =   [0-9.]+ sec
-
-The following tests FAILED:
-.*2 - CMakeVersionFail \(Failed\)

-----------------------------------------------------------------------

Summary of changes:
 Source/CTest/cmCTestCoverageHandler.cxx            |    3 ---
 Source/CTest/cmCTestGenericHandler.cxx             |    1 -
 Source/CTest/cmCTestGenericHandler.h               |    7 -------
 Source/CTest/cmCTestHandlerCommand.cxx             |    9 ++-------
 Source/CTest/cmCTestMemCheckHandler.cxx            |    7 -------
 Source/CTest/cmCTestSubmitHandler.cxx              |   21 +-------------------
 Source/CTest/cmCTestUpdateHandler.cxx              |    5 -----
 Source/CTest/cmCTestUploadHandler.cxx              |    1 -
 Source/cmCTest.cxx                                 |    1 +
 .../ctest_build/BuildCompileError-stderr.txt       |    1 -
 .../ctest_build/BuildCompileError-stdout.txt       |   16 ---------------
 Tests/RunCMake/ctest_build/CMakeLists.txt.in       |    1 -
 Tests/RunCMake/ctest_build/RunCMakeTest.cmake      |    7 -------
 ...ressSanitizer-result.txt => DummyBC-result.txt} |    0
 Tests/RunCMake/ctest_test/CMakeLists.txt.in        |    1 -
 Tests/RunCMake/ctest_test/RunCMakeTest.cmake       |    7 -------
 Tests/RunCMake/ctest_test/TestFail-stdout.txt      |   10 ----------
 17 files changed, 4 insertions(+), 94 deletions(-)
 delete mode 100644 Tests/RunCMake/ctest_build/BuildCompileError-stderr.txt
 delete mode 100644 Tests/RunCMake/ctest_build/BuildCompileError-stdout.txt
 copy Tests/RunCMake/ctest_memcheck/{DummyAddressSanitizer-result.txt => 
DummyBC-result.txt} (100%)
 delete mode 100644 Tests/RunCMake/ctest_test/TestFail-stdout.txt


hooks/post-receive
-- 
CMake
_______________________________________________
Cmake-commits mailing list
Cmake-commits@cmake.org
http://public.kitware.com/mailman/listinfo/cmake-commits

Reply via email to