headermap-rel.c 290 B

123456789101112
  1. // This uses a headermap with this entry:
  2. // Foo.h -> Foo/Foo.h
  3. // RUN: %clang_cc1 -E %s -o %t.i -I %S/Inputs/headermap-rel/foo.hmap -F %S/Inputs/headermap-rel
  4. // RUN: FileCheck %s -input-file %t.i
  5. // CHECK: Foo.h is parsed
  6. // CHECK: Foo.h is parsed
  7. #include "Foo.h"
  8. #include "Foo.h"