[PATCH] D12050: docs: Prefer 'check-clang' to 'clang-test'
Brian Gesiak via cfe-commits
cfe-commits at lists.llvm.org
Fri Aug 14 21:41:00 PDT 2015
modocache created this revision.
modocache added a subscriber: cfe-commits.
r159483 changed the canonical name of the Clang test target from
'clang-test' to 'check-clang'. Although the old name is still a valid
alias, update the documentation to use the new, canonical target name.
http://reviews.llvm.org/D12050
Files:
docs/LibASTMatchersTutorial.rst
www/hacking.html
Index: www/hacking.html
===================================================================
--- www/hacking.html
+++ www/hacking.html
@@ -122,7 +122,7 @@
about what is being run.</p>
<p>If you built LLVM and Clang using CMake, the test suite can be run
- with <tt>make clang-test</tt> from the top-level LLVM directory.</p>
+ with <tt>make check-clang</tt> from the top-level LLVM directory.</p>
<p>The tests primarily consist of a test runner script running the compiler
under test on individual test files grouped in the directories under the
Index: docs/LibASTMatchersTutorial.rst
===================================================================
--- docs/LibASTMatchersTutorial.rst
+++ docs/LibASTMatchersTutorial.rst
@@ -60,7 +60,7 @@
cmake -G Ninja ../llvm -DLLVM_BUILD_TESTS=ON # Enable tests; default is off.
ninja
ninja check # Test LLVM only.
- ninja clang-test # Test Clang only.
+ ninja check-clang # Test Clang only.
ninja install
And we're live.
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D12050.32217.patch
Type: text/x-patch
Size: 1029 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20150815/5ba1466d/attachment-0001.bin>
More information about the cfe-commits
mailing list