소스 검색

ENH: print errors when they are there

Bill Hoffman 22 년 전
부모
커밋
baadc0a361
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      Source/cmCTest.cxx

+ 2 - 0
Source/cmCTest.cxx

@@ -3886,6 +3886,7 @@ int cmCTest::RunCMakeAndTest(std::string* outstring)
   if (cm.Run(args) != 0)
     {
     std::cerr << "Error: cmake execution failed\n";
+    std::cerr << cmakeOutString << "\n";
     // return to the original directory
     cmSystemTools::ChangeDirectory(cwd.c_str());
     return 1;
@@ -3895,6 +3896,7 @@ int cmCTest::RunCMakeAndTest(std::string* outstring)
     if (cm.Run(args) != 0)
       {
       std::cerr << "Error: cmake execution failed\n";
+      std::cerr << cmakeOutString << "\n";
       // return to the original directory
       cmSystemTools::ChangeDirectory(cwd.c_str());
       return 1;