Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | [llvm] Get rid of "%T" expansions | Kuba Mracek | 2017-08-15 | 1 | -5/+5 |
| | | | | | | | | | | 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 llvm. Differential Revision: https://reviews.llvm.org/D36495 llvm-svn: 310953 | ||||
* | [OCaml] Do not use -warn-error in tests. | Peter Zotov | 2015-07-17 | 1 | -2/+2 |
| | | | | | | | | | | This -warn-error flag invariably gets into release tarballs and breaks builds on distributions that run tests as a part of release process. The OCaml binding tests are especially critical, since they often expose lingering toolchain bugs, and so it is replaced with -w +A (equivalent to -Wall). llvm-svn: 242550 | ||||
* | [OCaml] Move Llvm.clone_module to its own Llvm_transform_utils module. | Peter Zotov | 2014-12-01 | 1 | -0/+21 |
This way most code won't link this (substantially large) library, if compiled statically with LLVM. llvm-svn: 223072 |