diff options
author | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2012-11-01 00:59:15 +0000 |
---|---|---|
committer | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2012-11-01 00:59:15 +0000 |
commit | b2ed96a0a56e0c789882810b28570d5182b39210 (patch) | |
tree | 9f979b86066321200b728fb5b47a95d7125222cd | |
parent | 79a29eb35a9508d61abb07452e4912d03466d1e7 (diff) |
[lit] For the "case-insensitive-filesystem" make sure to create the test temporary file
in the test output directory.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@167193 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/lit.cfg | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/lit.cfg b/test/lit.cfg index 3cbe01384b..e91e66052e 100644 --- a/test/lit.cfg +++ b/test/lit.cfg @@ -228,7 +228,7 @@ if platform.system() not in ['Windows']: # Case-insensitive file system def is_filesystem_case_insensitive(): - handle, path = tempfile.mkstemp(prefix='case-test') + handle, path = tempfile.mkstemp(prefix='case-test', dir=config.test_exec_root) isInsensitive = os.path.exists(path.upper()) os.close(handle) os.remove(path) |