
Summary: This change moves tests for checkers and infrastructure into separate directories, making it easier to find infrastructure tests. Tests for checkers are already easy to find because they are named after the checker. Tests for infrastructure were difficult to find because they were outnumbered by tests for checkers. Now they are in a separate directory. Reviewers: jfb, jdoerfert, lebedev.ri Subscribers: srhines, nemanjai, aheejin, kbarton, christof, mgrang, arphaman, jfb, lebedev.ri, cfe-commits Tags: #clang Differential Revision: https://reviews.llvm.org/D68807 llvm-svn: 374540
10 lines
388 B
C
10 lines
388 B
C
// run: clang-tidy -checks=-*,llvm-include-order -header-filter=.* %s \
|
|
// run: -- -isystem %S/Inputs/Headers -I %S/Inputs/overlapping | \
|
|
// run: not grep "note: this fix will not be applied because it overlaps with another fix"
|
|
|
|
#include "b.h"
|
|
#include "a.h"
|
|
|
|
// The comments above are there to match the offset of the #include with the
|
|
// offset of the #includes in the .cpp file.
|