[llvm] r211550 - not: Only consider exit code 3 to be a crash with --crash
Reid Kleckner
reid at kleckner.net
Mon Jun 23 15:54:33 PDT 2014
Author: rnk
Date: Mon Jun 23 17:54:33 2014
New Revision: 211550
URL: http://llvm.org/viewvc/llvm-project?rev=211550&view=rev
Log:
not: Only consider exit code 3 to be a crash with --crash
This fixes Clang's test/Index/comment-xml-schema.c with Cygwin's
xmllint.exe, which uses exit(3) for XML validation failure.
Modified:
llvm/trunk/utils/not/not.cpp
Modified: llvm/trunk/utils/not/not.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/utils/not/not.cpp?rev=211550&r1=211549&r2=211550&view=diff
==============================================================================
--- llvm/trunk/utils/not/not.cpp (original)
+++ llvm/trunk/utils/not/not.cpp Mon Jun 23 17:54:33 2014
@@ -33,10 +33,11 @@ int main(int argc, const char **argv) {
int Result = sys::ExecuteAndWait(Program, argv, nullptr, nullptr, 0, 0,
&ErrMsg);
#ifdef _WIN32
- // Handle abort() in msvcrt -- It has exit code as 3.
- // abort(), aka unreachable, may be handled as crash.
- // FIXME: Could we move this into Win32/Program.inc?
- if (Result == 3)
+ // Handle abort() in msvcrt -- It has exit code as 3. abort(), aka
+ // unreachable, should be recognized as a crash. However, some binaries use
+ // exit code 3 on non-crash failure paths, so only do this if we expect a
+ // crash.
+ if (ExpectCrash && Result == 3)
Result = -3;
#endif
if (Result < 0) {
More information about the llvm-commits
mailing list