19 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			C
		
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			C
		
	
	
	
| // REQUIRES: case-insensitive-filesystem
 | |
| 
 | |
| // RUN: mkdir -p %T/apath
 | |
| // RUN: cp %S/Inputs/case-insensitive-include.h %T
 | |
| // RUN: cd %T
 | |
| // RUN: %clang_cc1 -fsyntax-only -fms-compatibility %s -include %s -I %T -verify
 | |
| // RUN: %clang_cc1 -fsyntax-only -fms-compatibility -fdiagnostics-parseable-fixits %s -include %s -I %T 2>&1 | FileCheck %s
 | |
| 
 | |
| #include "..\Output\.\case-insensitive-include.h"
 | |
| #include "..\Output\.\Case-Insensitive-Include.h" // expected-warning {{non-portable path}}
 | |
| // CHECK: fix-it:"{{.*}}":{[[@LINE-1]]:10-[[@LINE-1]]:50}:"\"..\\Output\\.\\case-insensitive-include.h\""
 | |
| #include "..\output\.\case-insensitive-include.h" // expected-warning {{non-portable path}}
 | |
| // CHECK: fix-it:"{{.*}}":{[[@LINE-1]]:10-[[@LINE-1]]:50}:"\"..\\Output\\.\\case-insensitive-include.h\""
 | |
| 
 | |
| #include "apath\..\.\case-insensitive-include.h"
 | |
| #include "apath\..\.\Case-Insensitive-Include.h" // expected-warning {{non-portable path}}
 | |
| // CHECK: fix-it:"{{.*}}":{[[@LINE-1]]:10-[[@LINE-1]]:49}:"\"apath\\..\\.\\case-insensitive-include.h\""
 | |
| #include "APath\..\.\case-insensitive-include.h" // For the sake of efficiency, this case is not diagnosed. :-(
 |