xref: /llvm-project/clang/test/Preprocessor/missing-include-range-check.h (revision 45449548c2959f9b3032a2aeb240daaa45b9e104)
1*45449548SErik Verbruggen // RUN: env CINDEXTEST_KEEP_GOING=1 c-index-test -test-load-source all %s > /dev/null 2> %t.err
2*45449548SErik Verbruggen // RUN: FileCheck < %t.err -check-prefix=CHECK-RANGE %s
3*45449548SErik Verbruggen 
4*45449548SErik Verbruggen #include <foobar.h>
5*45449548SErik Verbruggen #include "moozegnarf.h"
6*45449548SErik Verbruggen 
7*45449548SErik Verbruggen // CHECK-RANGE: rewrite-includes-missing.c:4:10:{4:10-4:19}: fatal error: 'foobar.h' file not found
8*45449548SErik Verbruggen // CHECK-RANGE: rewrite-includes-missing.c:5:10:{5:10-5:24}: fatal error: 'moozegnarf.h' file not found
9