summaryrefslogtreecommitdiffstats
path: root/clang-tools-extra/test/clang-tidy/clang-cl-driver.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Revert "Resubmit "Add a test for clang-tidy using the clang-cl driver.""Ahmed Bougacha2016-09-081-17/+0
| | | | | | | | | | This reverts commit r280839. It's problematic on OS X, where the '/Users/...' paths are interpreted as '/U' options. Investigation ongoing in http://llvm.org/PR30328. llvm-svn: 280975
* Resubmit "Add a test for clang-tidy using the clang-cl driver."Zachary Turner2016-09-071-0/+17
| | | | | | | | This was originally reverted because the patch on the clang tooling side was reverted. That patch is being resubmitted, so this patch is resubmitted as well. llvm-svn: 280839
* Revert "Add a test for clang-tidy using the clang-cl driver."Zachary Turner2016-08-171-17/+0
| | | | | | | | | | This reverts commit fd1908ce445eba4544d64cc68b3c03249e4bf614. This should be the correct CL to revert. The clang-side patch that enabled this functionality was reverted, so this test needs to be reverted until it gets fixed. llvm-svn: 278979
* Add a test for clang-tidy using the clang-cl driver.Zachary Turner2016-08-171-0/+17
| | | | | | | Reviewed By: alexfh Differential Revision: https://reviews.llvm.org/D23480 llvm-svn: 278968
* Remove accidentally committed file.Zachary Turner2016-08-121-17/+0
| | | | llvm-svn: 278547
* Analyze include order on a per-file basis.Zachary Turner2016-08-121-0/+17
The include order check would get notified of all include directives in a depth-first manner. This created the possibility of an include directive from a header file interfering with the sort order of a set of two distinct blocks from the top level cpp file, if that include directive was on just the right line. With this patch we bucket the include directives by the file in which they appear in and process one bucket at a time, so that directives from different files do not get mixed together into the same list. Reviewed By: alexfh Differential Revision: https://reviews.llvm.org/D23434 llvm-svn: 278546
OpenPOWER on IntegriCloud