Browse Source

ENH: add cmake output to build and test

Bill Hoffman 19 years ago
parent
commit
2ddf9ad56a
1 changed files with 3 additions and 0 deletions
  1. 3 0
      Source/CTest/cmCTestBuildAndTestHandler.cxx

+ 3 - 0
Source/CTest/cmCTestBuildAndTestHandler.cxx

@@ -117,6 +117,9 @@ int cmCTestBuildAndTestHandler::RunCMake(std::string* outstring,
       return 1;
       return 1;
       }
       }
     }
     }
+  out << "======== CMake output     ======\n";
+  out << cmakeOutString;
+  out << "======== End CMake output ======\n";
   return 0;
   return 0;
 }
 }