1*67e74705SXin Li // REQUIRES: case-insensitive-filesystem 2*67e74705SXin Li 3*67e74705SXin Li // RUN: mkdir -p %T/asystempath 4*67e74705SXin Li // RUN: cp %S/Inputs/case-insensitive-include.h %T/asystempath/ 5*67e74705SXin Li // RUN: cd %T 6*67e74705SXin Li // RUN: %clang_cc1 -fsyntax-only %s -include %s -isystem %T/asystempath -verify -Wnonportable-system-include-path 7*67e74705SXin Li // RUN: %clang_cc1 -fsyntax-only -fdiagnostics-parseable-fixits %s -include %s -isystem %T/asystempath -Wnonportable-system-include-path 2>&1 | FileCheck %s 8*67e74705SXin Li 9*67e74705SXin Li #include "CASE-INSENSITIVE-INCLUDE.H" // expected-warning {{non-portable path}} 10*67e74705SXin Li // CHECK: fix-it:"{{.*}}":{[[@LINE-1]]:10-[[@LINE-1]]:38}:"\"case-insensitive-include.h\"" 11