aboutsummaryrefslogtreecommitdiff
path: root/lldb/packages/Python/lldbsuite/test/dotest.py
diff options
context:
space:
mode:
authorAdrian Prantl <aprantl@apple.com>2018-02-02 18:32:29 +0000
committerAdrian Prantl <aprantl@apple.com>2018-02-02 18:32:29 +0000
commit34769d80dd9ca6e38c6c09bed7c7e571f4218b73 (patch)
tree2e42d269ca123abcdda40f9f43be984549017fc5 /lldb/packages/Python/lldbsuite/test/dotest.py
parent78809e53ccbe1d0b5de286d04570a22a8e327dc9 (diff)
downloadllvm-34769d80dd9ca6e38c6c09bed7c7e571f4218b73.zip
llvm-34769d80dd9ca6e38c6c09bed7c7e571f4218b73.tar.gz
llvm-34769d80dd9ca6e38c6c09bed7c7e571f4218b73.tar.bz2
Use an alternative approach to prevent Spotlight from indexing the build directory.
llvm-svn: 324115
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/dotest.py')
-rw-r--r--lldb/packages/Python/lldbsuite/test/dotest.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/dotest.py b/lldb/packages/Python/lldbsuite/test/dotest.py
index 51f12e3..800a60e 100644
--- a/lldb/packages/Python/lldbsuite/test/dotest.py
+++ b/lldb/packages/Python/lldbsuite/test/dotest.py
@@ -1200,14 +1200,6 @@ def run_suite():
build_dir = configuration.test_build_dir
lldbutil.mkdir_p(build_dir)
- # Create a marker for Spotlight to never index $BUILD_DIR. LLDB
- # queries Spotlight to locate .dSYM bundles based on the UUID
- # embedded in a binary, and because the UUID is a hash of filename
- # and .text section, there *will* be conflicts inside $BUILD_DIR.
- if platform.system() == "Darwin":
- with open(os.path.join(build_dir, '.metadata_never_index'), 'w+'):
- pass
-
target_platform = lldb.DBG.GetSelectedPlatform().GetTriple().split('-')[2]
checkLibcxxSupport()