[Lldb-commits] [PATCH] D68755: [test] Use a different module cache for Shell and API tests.

Pavel Labath via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Thu Oct 10 01:07:20 PDT 2019


labath added inline comments.


================
Comment at: lldb/packages/Python/lldbsuite/test/make/Makefile.rules:316
 
-# Use a shared module cache when building in the default test build directory.
-CLANG_MODULE_CACHE_DIR := $(shell echo "$(BUILDDIR)" | sed $(QUOTE)s/lldb-test-build.noindex.*/lldb-test-build.noindex\/module-cache-clang/$(QUOTE))
----------------
JDevlieghere wrote:
> We should have a fallback here that defaults to `$(BUILDDIR)/module-cache` if the variable is not set in the environment.
Is that wise, given D68731 tries to move away from autodetecting stuff in `make`?

What I think would be more useful is to pass this variable via the command like instead of the environment. That way it will be visible in the `make` invocation that dotest prints and the exact make invocation can be reproduced by copy-pasting. It shouldn't be even hard to do that -- you'd just need builder_base.py to fetch this from the `configuration` object and inject it into the make arguments.


Repository:
  rLLDB LLDB

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D68755/new/

https://reviews.llvm.org/D68755





More information about the lldb-commits mailing list