xref: /aosp_15_r20/external/clang/test/Preprocessor/headermap-rel.c (revision 67e74705e28f6214e480b399dd47ea732279e315)
1*67e74705SXin Li 
2*67e74705SXin Li // This uses a headermap with this entry:
3*67e74705SXin Li //   Foo.h -> Foo/Foo.h
4*67e74705SXin Li 
5*67e74705SXin Li // RUN: %clang_cc1 -E %s -o %t.i -I %S/Inputs/headermap-rel/foo.hmap -F %S/Inputs/headermap-rel
6*67e74705SXin Li // RUN: FileCheck %s -input-file %t.i
7*67e74705SXin Li 
8*67e74705SXin Li // CHECK: Foo.h is parsed
9*67e74705SXin Li // CHECK: Foo.h is parsed
10*67e74705SXin Li 
11*67e74705SXin Li #include "Foo.h"
12*67e74705SXin Li #include "Foo.h"
13