diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-11-08 01:46:19 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-11-08 01:46:19 +0000 |
commit | 6eb1201c90f6eea2768aa6f9315793c93669dddf (patch) | |
tree | 99233e9be4859ef04a0bcac33c5c9595c6c3dfe4 /clang/test/Index/objc-decls.m | |
parent | 8b576979549184e73c6876ec4b494aacf7c87d2d (diff) | |
download | bcm5719-llvm-6eb1201c90f6eea2768aa6f9315793c93669dddf.tar.gz bcm5719-llvm-6eb1201c90f6eea2768aa6f9315793c93669dddf.zip |
Move test/Index input files into a sub directory (not scanned as tests).
llvm-svn: 86431
Diffstat (limited to 'clang/test/Index/objc-decls.m')
-rw-r--r-- | clang/test/Index/objc-decls.m | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/clang/test/Index/objc-decls.m b/clang/test/Index/objc-decls.m index 56051d52e3c..ff396788771 100644 --- a/clang/test/Index/objc-decls.m +++ b/clang/test/Index/objc-decls.m @@ -1,16 +1,16 @@ -// RUN: clang-cc -emit-pch %S/t1.m -o %t1.m.ast -// RUN: clang-cc -emit-pch %S/t2.m -o %t2.m.ast +// RUN: clang-cc -emit-pch %S/Inputs/t1.m -o %t1.m.ast +// RUN: clang-cc -emit-pch %S/Inputs/t2.m -o %t2.m.ast -// RUN: index-test %t1.m.ast %t2.m.ast -point-at %S/t1.m:12:12 -print-decls > %t +// RUN: index-test %t1.m.ast %t2.m.ast -point-at %S/Inputs/t1.m:12:12 -print-decls > %t // RUN: cat %t | count 2 // RUN: grep 'objc.h:2:9,' %t | count 2 -// RUN: index-test %t1.m.ast %t2.m.ast -point-at %S/objc.h:5:13 -print-decls > %t +// RUN: index-test %t1.m.ast %t2.m.ast -point-at %S/Inputs/objc.h:5:13 -print-decls > %t // RUN: cat %t | count 3 // RUN: grep 'objc.h:5:1,' %t | count 2 // RUN: grep 't1.m:15:1,' %t | count 1 -// RUN: index-test %t1.m.ast %t2.m.ast -point-at %S/objc.h:10:13 -print-decls > %t +// RUN: index-test %t1.m.ast %t2.m.ast -point-at %S/Inputs/objc.h:10:13 -print-decls > %t // RUN: cat %t | count 3 // RUN: grep 'objc.h:10:1,' %t | count 2 // RUN: grep 't2.m:11:1,' %t | count 1 |