aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/lit.cfg2
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)