]> granicus.if.org Git - clang/commitdiff
[Win32] Rework crash-report since r145389.
authorNAKAMURA Takumi <geek4civic@gmail.com>
Tue, 17 Jul 2012 05:09:29 +0000 (05:09 +0000)
committerNAKAMURA Takumi <geek4civic@gmail.com>
Tue, 17 Jul 2012 05:09:29 +0000 (05:09 +0000)
  - lib/Driver/Driver.cpp, tools/driver/driver.cpp: Exit status should not be propagated, although clang driver should catch exceptions.
  - test/Driver/crash-report.c: Add REQUIRES:shell for now.
    FIXME: setenv should work also on Lit.InternalShellRunner.
  - test/Driver/crash-report.c: Remove XFAIL.

Thanks to Chad, To point out the issue.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@160343 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Driver/Driver.cpp
test/Driver/crash-report.c
tools/driver/driver.cpp

index a2afb76fe554c9ef8b920ba487d2cb6bd824501e..7f6fcb1a5e85a83d0a6b286252a5148881dfeb30 100644 (file)
@@ -582,14 +582,8 @@ int Driver::ExecuteCompilation(const Compilation &C,
     C.CleanupFileList(C.getResultFiles(), true);
 
     // Failure result files are valid unless we crashed.
-    if (Res < 0) {
+    if (Res < 0)
       C.CleanupFileList(C.getFailureResultFiles(), true);
-#ifdef _WIN32
-      // Exit status should not be negative on Win32,
-      // unless abnormal termination.
-      Res = 1;
-#endif
-    }
   }
 
   // Print extra information about abnormal failures, if possible.
index ffa375334c63b95995f3011477354a79d2509823..f9f62da5f24a1b49d19f34a609d006885bcb29fd 100644 (file)
@@ -4,7 +4,7 @@
 // RUN: cat %t/crash-report-*.c | FileCheck --check-prefix=CHECKSRC %s
 // RUN: cat %t/crash-report-*.sh | FileCheck --check-prefix=CHECKSH %s
 // REQUIRES: crash-recovery
-// XFAIL: mingw32,win32
+// REQUIRES: shell
 
 #pragma clang __debug parser_crash
 // CHECK: Preprocessed source(s) and associated run script(s) are located at:
index 7813f355e4f1209bd4a31d87957924a0f219137a..12a93298c08a1ce3f91dd60ae2e35e93e920b4dc 100644 (file)
@@ -490,5 +490,13 @@ int main(int argc_, const char **argv_) {
   
   llvm::llvm_shutdown();
 
+#ifdef _WIN32
+  // Exit status should not be negative on Win32, unless abnormal termination.
+  // Once abnormal termiation was caught, negative status should not be
+  // propagated.
+  if (Res < 0)
+    Res = 1;
+#endif
+
   return Res;
 }