[clang-tools-extra] [llvm] [clang-doc] Add basic e2e test (PR #93928)
via cfe-commits
cfe-commits at lists.llvm.org
Thu Jun 6 15:17:06 PDT 2024
================
@@ -69,8 +70,15 @@
clang_tidy_headers = os.path.join(
config.test_source_root, "clang-tidy", "checkers", "Inputs", "Headers"
)
+
config.substitutions.append(("%clang_tidy_headers", clang_tidy_headers))
+clang_doc_install = os.path.join(
+ os.path.dirname(shutil.which("clang-doc")), "..", "share", "clang"
+)
----------------
PeterChou1 wrote:
I will note that currently there isn't a mechanism to pass another default stylesheet to the clang-doc the option --stylesheets=<string> in clang-doc only extends the css stylesheet but still requires default stylesheet to be present.
I was trying to find a ways to copy the asset via the lit command line but i can't seem to do it
https://github.com/llvm/llvm-project/pull/93928
More information about the cfe-commits
mailing list