Ted Kremenek | a7e8a83 | 2011-11-11 00:46:43 +0000 | [diff] [blame] | 1 | void foo() { |
| 2 | int voodoo; |
| 3 | voodoo = voodoo + 1; |
| 4 | } |
| 5 | |
| 6 | // RUN: %clang -Wall -fsyntax-only %s --serialize-diagnostics %t |
| 7 | // RUN: c-index-test -read-diagnostics %t 2>&1 | FileCheck %s |
| 8 | // RUN: rm -f %t |
| 9 | |
| 10 | // NOTE: it is important that this test case only contain a single issue. This test case checks |
| 11 | // if we can handle serialized diagnostics that contain only one diagnostic. |
| 12 | |
| 13 | // CHECK: {{.*}}serialized-diags-single-issue.c:3:12: warning: variable 'voodoo' is uninitialized when used here [-Wuninitialized] |
| 14 | // CHECK: Range: {{.*}}serialized-diags-single-issue.c:3:12 {{.*}}serialized-diags-single-issue.c:3:18 |
| 15 | // CHECK: +-{{.*}}serialized-diags-single-issue.c:2:13: note: initialize the variable 'voodoo' to silence this warning [] |
| 16 | // CHECK: +-FIXIT: {{.*}}serialized-diags-single-issue.c:2:13 - {{.*}}serialized-diags-single-issue.c:2:13): " = 0" |