Home | History | Annotate | Download | only in Misc

Lines Matching full:skip

2 // RUN: not %clang_cc1 -fsyntax-only -fmacro-backtrace-limit 2 %s 2>&1 | FileCheck %s --check-prefix=SKIP
34 // SKIP: {{.*}}:12:9: error: use of undeclared identifier 'p'
35 // SKIP-NEXT: int a = LEVEL1(b);
36 // SKIP-NEXT: ^
37 // SKIP-NEXT: {{.*}}:10:19: note: expanded from macro 'LEVEL1'
38 // SKIP-NEXT: #define LEVEL1(x) LEVEL2(x)
39 // SKIP-NEXT: ^
40 // SKIP-NEXT: note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all)
41 // SKIP-NEXT: {{.*}}:7:23: note: expanded from macro 'LEVEL4'
42 // SKIP-NEXT: #define LEVEL4(x) ADD(p,x)
43 // SKIP-NEXT: ^
44 // SKIP-NEXT: {{.*}}:12:16: error: use of undeclared identifier 'b'
45 // SKIP-NEXT: int a = LEVEL1(b);
46 // SKIP-NEXT: ^
47 // SKIP-NEXT: 2 errors generated.