[clang] 604a231 - [clang][www] Change 'clang-test' to 'check-clang' on the hacking webpage
David Spickett via cfe-commits
cfe-commits at lists.llvm.org
Thu Sep 21 01:45:35 PDT 2023
Author: David Spickett
Date: 2023-09-21T08:42:57Z
New Revision: 604a231881a0e8f204a6d3337bfa3e797e911e34
URL: https://github.com/llvm/llvm-project/commit/604a231881a0e8f204a6d3337bfa3e797e911e34
DIFF: https://github.com/llvm/llvm-project/commit/604a231881a0e8f204a6d3337bfa3e797e911e34.diff
LOG: [clang][www] Change 'clang-test' to 'check-clang' on the hacking webpage
This change is https://reviews.llvm.org/D49549 ported to the monorepo layout.
Patch by Arnaud Coomans.
Patch title and message:
```
Change 'clang-test' to 'check-clang' on the hacking webpage
The command to run tests was previously changed from 'clang-test' to 'check-clang'; with 'clang-test' remaining available as a legacy alias (see git-svn-id: https://reviews.llvm.org/rC159483 91177308-0d34-0410-b5e6-96231b3b80d8).
This commit changes the www documentation accordingly.
```
Added:
Modified:
clang/www/hacking.html
Removed:
################################################################################
diff --git a/clang/www/hacking.html b/clang/www/hacking.html
index 2f46792d01d8530..78b67cd05c53c68 100755
--- a/clang/www/hacking.html
+++ b/clang/www/hacking.html
@@ -126,7 +126,7 @@ <h3 id="testingNonWindows">Testing on Unix-like Systems</h3>
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
@@ -193,8 +193,8 @@ <h3 id="testingWindows">Testing using Visual Studio on Windows</h3>
to CMake explicitly.</p>
<p>The cmake build tool is set up to create Visual Studio project files
- for running the tests, "clang-test" being the root. Therefore, to
- run the test from Visual Studio, right-click the clang-test project
+ for running the tests, "check-clang" being the root. Therefore, to
+ run the test from Visual Studio, right-click the check-clang project
and select "Build".</p>
<p>
More information about the cfe-commits
mailing list