diff options
| author | Douglas Gregor <dgregor@apple.com> | 2010-11-11 00:39:14 +0000 |
|---|---|---|
| committer | Douglas Gregor <dgregor@apple.com> | 2010-11-11 00:39:14 +0000 |
| commit | 44c6ee77293ac396b3f4737951e4fd44834b85e9 (patch) | |
| tree | 5d86b8b57286f6f894b0b6920a6d26c6a6578d35 /clang/test/Index/complete-driver-errors.c | |
| parent | 8bf3d832e5044bace8722894f691ff6badc95d61 (diff) | |
| download | bcm5719-llvm-44c6ee77293ac396b3f4737951e4fd44834b85e9.tar.gz bcm5719-llvm-44c6ee77293ac396b3f4737951e4fd44834b85e9.zip | |
Improve ASTUnit's capture of diagnostics so that the
diagnostic-capturing client lives as long as the ASTUnit itself
does. Otherwise, we can end up with crashes when we get a diagnostic
outside of parsing/code completion. The circumstances under which this
happen are really hard to reproduce, because a file needs to change
from under us.
llvm-svn: 118751
Diffstat (limited to 'clang/test/Index/complete-driver-errors.c')
| -rw-r--r-- | clang/test/Index/complete-driver-errors.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/clang/test/Index/complete-driver-errors.c b/clang/test/Index/complete-driver-errors.c index 1918511a186..566090c2606 100644 --- a/clang/test/Index/complete-driver-errors.c +++ b/clang/test/Index/complete-driver-errors.c @@ -2,20 +2,21 @@ int *blah = 1; int -// Test driver errors with code completion -// RUN: c-index-test -code-completion-at=%s:4:1 -std= %s 2> %t | FileCheck -check-prefix=CHECK-RESULTS %s -// RUN: FileCheck -check-prefix=CHECK-DIAGS %s < %t // CHECK-RESULTS: NotImplemented:{TypedText const} (40) // CHECK-RESULTS: NotImplemented:{TypedText restrict} (40) // CHECK-RESULTS: NotImplemented:{TypedText volatile} (40) +// CHECK-DIAGS: error: invalid value '' in '-std=' +// CHECK-DIAGS: complete-driver-errors.c:1:6:{1:13-1:14}: warning: incompatible integer to pointer conversion initializing 'int *' with an expression of type 'int' + +// Test driver errors with code completion +// RUN: c-index-test -code-completion-at=%s:4:1 -std= %s 2> %t | FileCheck -check-prefix=CHECK-RESULTS %s +// RUN: FileCheck -check-prefix=CHECK-DIAGS %s < %t // Test driver errors with parsing // RUN: c-index-test -test-load-source all -std= %s 2> %t | FileCheck -check-prefix=CHECK-LOAD %s // RUN: FileCheck -check-prefix=CHECK-DIAGS %s < %t // CHECK-LOAD: complete-driver-errors.c:1:6: VarDecl=blah:1:6 -// CHECK-DIAGS: error: invalid value '' in '-std=' -// CHECK-DIAGS: complete-driver-errors.c:1:6:{1:13-1:14}: warning: incompatible integer to pointer conversion initializing 'int *' with an expression of type 'int' // Test driver errors with code completion and precompiled preamble // RUN: env CINDEXTEST_EDITING=1 c-index-test -code-completion-at=%s:4:1 -std= %s 2> %t | FileCheck -check-prefix=CHECK-RESULTS %s // RUN: FileCheck -check-prefix=CHECK-DIAGS %s < %t |

