Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | [clang] Get rid of "%T" expansions | Kuba Mracek | 2017-08-15 | 1 | -2/+2 |
| | | | | | | | | | | The %T lit expansion expands to a common directory shared between all the tests in the same directory, which is unexpected and unintuitive, and more importantly, it's been a source of subtle race conditions and flaky tests. In https://reviews.llvm.org/D35396, it was agreed that it would be best to simply ban %T and only keep %t, which is unique to each test. When a test needs a temporary directory, it can just create one using mkdir %t. This patch removes %T in clang. Differential Revision: https://reviews.llvm.org/D36437 llvm-svn: 310950 | ||||
* | Fix test on Windows. Only a single backslash was required, not a double. | Douglas Yung | 2017-03-15 | 1 | -1/+1 |
| | | | | llvm-svn: 297799 | ||||
* | Make a blind attempt to fix this testcase on Windows. | Adrian Prantl | 2017-03-14 | 1 | -1/+1 |
| | | | | llvm-svn: 297791 | ||||
* | Canonicalize the path provided by -fmodules-cache-path. | Adrian Prantl | 2017-03-14 | 1 | -0/+30 |
This fixes lookup mismatches that could happen when the module cache path contained a '/./' component. <rdar://problem/30413458> Differential Revision: https://reviews.llvm.org/D30915 llvm-svn: 297790 |