summaryrefslogtreecommitdiffstats
path: root/llvm/test/Bindings/OCaml/transform_utils.ml
Commit message (Collapse)AuthorAgeFilesLines
* [llvm] Get rid of "%T" expansionsKuba Mracek2017-08-151-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 Zotov2015-07-171-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 Zotov2014-12-011-0/+21
This way most code won't link this (substantially large) library, if compiled statically with LLVM. llvm-svn: 223072
OpenPOWER on IntegriCloud