[llvm] [lit][docs] Mention LIT_OPTS instead of LIT_ARGS (PR #147494)
Remy Farley via llvm-commits
llvm-commits at lists.llvm.org
Wed Jul 16 08:06:50 PDT 2025
https://github.com/one-d-wide updated https://github.com/llvm/llvm-project/pull/147494
>From ddb1d1b3023ef696f7ef07a2d02b49131a09bfd6 Mon Sep 17 00:00:00 2001
From: "Remy D. Farley" <one-d-wide at protonmail.com>
Date: Tue, 8 Jul 2025 09:12:11 +0000
Subject: [PATCH] [lit][docs] Mention LIT_OPTS instead of LIT_ARGS
---
llvm/docs/TestingGuide.rst | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/llvm/docs/TestingGuide.rst b/llvm/docs/TestingGuide.rst
index b6dda6a732405..76b6b4e2cab30 100644
--- a/llvm/docs/TestingGuide.rst
+++ b/llvm/docs/TestingGuide.rst
@@ -152,12 +152,12 @@ can run the LLVM and Clang tests simultaneously using:
% make check-all
-To run the tests with Valgrind (Memcheck by default), use the ``LIT_ARGS`` make
+To run the tests with Valgrind (Memcheck by default), use the ``LIT_OPTS`` make
variable to pass the required options to lit. For example, you can use:
.. code-block:: bash
- % make check LIT_ARGS="-v --vg --vg-leak"
+ % make check LIT_OPTS="-v --vg --vg-leak"
to enable testing with valgrind and with leak checking enabled.
More information about the llvm-commits
mailing list