[PATCH] D140780: [Docs] TestingGuide.rst: Fix incorrect description

Fangrui Song via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Fri Dec 30 23:31:55 PST 2022


This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rG902614d2542d: [docs] TestingGuide.rst: Fix incorrect description (authored by DamonFool, committed by MaskRay).

Changed prior to commit:
  https://reviews.llvm.org/D140780?vs=485694&id=485753#toc

Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D140780

Files:
  llvm/docs/TestingGuide.rst


Index: llvm/docs/TestingGuide.rst
===================================================================
--- llvm/docs/TestingGuide.rst
+++ llvm/docs/TestingGuide.rst
@@ -206,7 +206,7 @@
 
 The regression test structure is very simple, but does require some
 information to be set. This information is gathered via ``cmake``
-and is written to a file, ``test/lit.site.cfg`` in the build directory.
+and is written to a file, ``test/lit.site.cfg.py`` in the build directory.
 The ``llvm/test`` Makefile does this work for you.
 
 In order for the regression tests to work, each directory of tests must
@@ -235,7 +235,7 @@
 
 :program:`lit` performs substitution on each RUN line to replace LLVM tool names
 with the full paths to the executable built for each tool (in
-``$(LLVM_OBJ_ROOT)/$(BuildMode)/bin)``. This ensures that :program:`lit` does
+``$(LLVM_OBJ_ROOT)/bin``). This ensures that :program:`lit` does
 not invoke any stray LLVM tools in the user's path during testing.
 
 Each RUN line is executed on its own, distinct from other lines unless


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D140780.485753.patch
Type: text/x-patch
Size: 1052 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20221231/f3238cb1/attachment.bin>


More information about the llvm-commits mailing list