[LNT] r303810 - tests/compile.py: Set xcodebuild derivedDataPath

Matthias Braun via llvm-commits llvm-commits at lists.llvm.org
Wed May 24 15:00:38 PDT 2017


Author: matze
Date: Wed May 24 17:00:37 2017
New Revision: 303810

URL: http://llvm.org/viewvc/llvm-project?rev=303810&view=rev
Log:
tests/compile.py: Set xcodebuild derivedDataPath

Move the derivedDataPath so we start with a fresh module cache and have
a better isolation between builds.

Modified:
    lnt/trunk/lnt/tests/compile.py

Modified: lnt/trunk/lnt/tests/compile.py
URL: http://llvm.org/viewvc/llvm-project/lnt/trunk/lnt/tests/compile.py?rev=303810&r1=303809&r2=303810&view=diff
==============================================================================
--- lnt/trunk/lnt/tests/compile.py (original)
+++ lnt/trunk/lnt/tests/compile.py Wed May 24 17:00:37 2017
@@ -382,6 +382,7 @@ def test_build(base_name, run_info, vari
         elif build_info['style'] == 'xcode-workspace':
             cmd.extend(('-scheme', build_info['scheme'],
                         '-workspace', file_path))
+            cmd.extend(('-derivedDataPath', build_base))
         else:
             fatal("unknown build style in project: %r" % project)
 




More information about the llvm-commits mailing list