зеркало из https://github.com/microsoft/clang-1.git
Add a little hack to emulate a clang crash, so the diagnostics generator can be
tested. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@155205 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Родитель
89592d5046
Коммит
80ec127fc9
|
@ -379,7 +379,7 @@ void Driver::generateCompilationDiagnostics(Compilation &C,
|
|||
return;
|
||||
|
||||
// Don't try to generate diagnostics for link jobs.
|
||||
if (FailingCommand->getCreator().isLinkJob())
|
||||
if (FailingCommand && FailingCommand->getCreator().isLinkJob())
|
||||
return;
|
||||
|
||||
Diag(clang::diag::note_drv_command_failed_diag_msg)
|
||||
|
|
|
@ -475,6 +475,10 @@ int main(int argc_, const char **argv_) {
|
|||
if (C.get())
|
||||
Res = TheDriver.ExecuteCompilation(*C, FailingCommand);
|
||||
|
||||
// Force a crash to test the diagnostics.
|
||||
if(::getenv("FORCE_CLANG_DIAGNOSTICS_CRASH"))
|
||||
Res = -1;
|
||||
|
||||
// If result status is < 0, then the driver command signalled an error.
|
||||
// In this case, generate additional diagnostic information if possible.
|
||||
if (Res < 0)
|
||||
|
|
Загрузка…
Ссылка в новой задаче