diff options
author | Ben Langmuir <blangmuir@apple.com> | 2014-09-10 21:41:43 +0000 |
---|---|---|
committer | Ben Langmuir <blangmuir@apple.com> | 2014-09-10 21:41:43 +0000 |
commit | 4a78c9eec41c4ab2f4a8889ff50b8b9544605826 (patch) | |
tree | 22970e6fd3ad5ad7e00bf883e7a33fa9d94b7f10 | |
parent | 77fd738f581d4feb0b946bf2a7072dc6cd15b661 (diff) | |
download | bcm5719-llvm-4a78c9eec41c4ab2f4a8889ff50b8b9544605826.tar.gz bcm5719-llvm-4a78c9eec41c4ab2f4a8889ff50b8b9544605826.zip |
Remove a couple of fixed paths that snuck into my test from 217550
I forgot to fix these again the second time I copy-and-pasted.
llvm-svn: 217552
-rw-r--r-- | clang/test/Modules/preprocess.m | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/test/Modules/preprocess.m b/clang/test/Modules/preprocess.m index a1c024d6ffb..5c32997f62f 100644 --- a/clang/test/Modules/preprocess.m +++ b/clang/test/Modules/preprocess.m @@ -13,8 +13,8 @@ void test() { // CHECK: int left_and_right(int *);{{$}} // CHECK-NEXT: @import diamond_left; /* clang -E: implicit import for "{{.*}}diamond_left.h" */{{$}} -// CHECK: @import diamond_right; /* clang -E: implicit import for "/Users/blangmuir/src/clang/test/Modules/Inputs/diamond_right.h" */{{$}} -// CHECK: @import diamond_right; /* clang -E: implicit import for "/Users/blangmuir/src/clang/test/Modules/Inputs/diamond_right.h" */{{$}} +// CHECK: @import diamond_right; /* clang -E: implicit import for "{{.*}}diamond_right.h" */{{$}} +// CHECK: @import diamond_right; /* clang -E: implicit import for "{{.*}}diamond_right.h" */{{$}} // CHECK-NEXT: void test() {{{$}} // CHECK-NEXT: top_left_before();{{$}} // CHECK-NEXT: left_and_right();{{$}} |