[LNT] r306356 - developer_guide: Tests need lnt in $PATH

Matthias Braun via llvm-commits llvm-commits at lists.llvm.org
Mon Jun 26 19:49:29 PDT 2017


Author: matze
Date: Mon Jun 26 19:49:29 2017
New Revision: 306356

URL: http://llvm.org/viewvc/llvm-project?rev=306356&view=rev
Log:
developer_guide: Tests need lnt in $PATH

Document the requirement that lnt needs to be in the $PATH to run the
unit tests.

Differential Revision: https://reviews.llvm.org/D34587

Modified:
    lnt/trunk/docs/developer_guide.rst

Modified: lnt/trunk/docs/developer_guide.rst
URL: http://llvm.org/viewvc/llvm-project/lnt/trunk/docs/developer_guide.rst?rev=306356&r1=306355&r2=306356&view=diff
==============================================================================
--- lnt/trunk/docs/developer_guide.rst (original)
+++ lnt/trunk/docs/developer_guide.rst Mon Jun 26 19:49:29 2017
@@ -33,9 +33,10 @@ sub-projects.
 The LNT regression tests make use of lit and other tools like FileCheck. At
 the moment, probably the easiest way to get them installed is to compile LLVM
 and use the binaries that are generated there. Assuming you've build LLVM
-into $LLVMBUILD, you can run the regression tests using the following command::
+into $LLVMBUILD, and installed lnt in $LNTINSTALL you can run the regression
+tests using the following command::
 
-     PATH=$LLVMBUILD/bin:$PATH llvm-lit -sv ./tests
+     PATH=$LLVMBUILD/bin:$LNTINSTALL/bin:$PATH llvm-lit -sv ./tests
 
 If you don't like temporary files being created in your LNT source directory,
 you can run the tests in a different directory too::




More information about the llvm-commits mailing list