forked from OSchip/llvm-project
20 lines
938 B
Mathematica
20 lines
938 B
Mathematica
|
// Test without PCH
|
||
|
// RUN: c-index-test -cursor-at=%S/get-cursor-macro-args.h:9:12 \
|
||
|
// RUN: -cursor-at=%S/get-cursor-macro-args.h:9:21 \
|
||
|
// RUN: -cursor-at=%S/get-cursor-macro-args.h:15:12 \
|
||
|
// RUN: -cursor-at=%S/get-cursor-macro-args.h:15:20 \
|
||
|
// RUN: %s -include get-cursor-macro-args.h | FileCheck %s
|
||
|
|
||
|
// Test with PCH
|
||
|
// RUN: c-index-test -write-pch %t.pch -x objective-c-header %S/get-cursor-macro-args.h
|
||
|
// RUN: c-index-test -cursor-at=%S/get-cursor-macro-args.h:9:12 \
|
||
|
// RUN: -cursor-at=%S/get-cursor-macro-args.h:9:21 \
|
||
|
// RUN: -cursor-at=%S/get-cursor-macro-args.h:15:12 \
|
||
|
// RUN: -cursor-at=%S/get-cursor-macro-args.h:15:20 \
|
||
|
// RUN: %s -include-pch %t.pch | FileCheck %s
|
||
|
|
||
|
// CHECK: ObjCClassRef=MyClass:1:12
|
||
|
// CHECK-NEXT: ObjCMessageExpr=meth:2:1
|
||
|
// CHECK-NEXT: ObjCMessageExpr=meth:2:1
|
||
|
// CHECK-NEXT: ObjCClassRef=MyClass:1:12
|