You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
693 B
15 lines
693 B
// This uses a headermap with this entry:
|
|
// someheader.h -> Product/someheader.h
|
|
|
|
// RUN: %clang_cc1 -v -fsyntax-only %s -iquote %S/Inputs/headermap-rel2/project-headers.hmap -isystem %S/Inputs/headermap-rel2/system/usr/include -I %S/Inputs/headermap-rel2 -H
|
|
// RUN: %clang_cc1 -fsyntax-only %s -iquote %S/Inputs/headermap-rel2/project-headers.hmap -isystem %S/Inputs/headermap-rel2/system/usr/include -I %S/Inputs/headermap-rel2 -H 2> %t.out
|
|
// RUN: FileCheck %s -input-file %t.out
|
|
|
|
// CHECK: Product/someheader.h
|
|
// CHECK: system/usr/include{{[/\\]+}}someheader.h
|
|
// CHECK: system/usr/include{{[/\\]+}}someheader.h
|
|
|
|
#include "someheader.h"
|
|
#include <someheader.h>
|
|
#include <someheader.h>
|