diff options
-rw-r--r-- | lib/Driver/Driver.cpp | 8 | ||||
-rw-r--r-- | test/Driver/crash-report.c | 2 | ||||
-rw-r--r-- | tools/driver/driver.cpp | 8 |
3 files changed, 10 insertions, 8 deletions
diff --git a/lib/Driver/Driver.cpp b/lib/Driver/Driver.cpp index a2afb76fe5..7f6fcb1a5e 100644 --- a/lib/Driver/Driver.cpp +++ b/lib/Driver/Driver.cpp @@ -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. diff --git a/test/Driver/crash-report.c b/test/Driver/crash-report.c index ffa375334c..f9f62da5f2 100644 --- a/test/Driver/crash-report.c +++ b/test/Driver/crash-report.c @@ -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: diff --git a/tools/driver/driver.cpp b/tools/driver/driver.cpp index 7813f355e4..12a93298c0 100644 --- a/tools/driver/driver.cpp +++ b/tools/driver/driver.cpp @@ -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; } |