summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Mosby <ojomojo@gmail.com>2009-03-30 18:56:53 +0000
committerJohn Mosby <ojomojo@gmail.com>2009-03-30 18:56:53 +0000
commit3228abe8f9a7fc5b3b9f4a6de272f712a365476a (patch)
tree20164be094e09ce446369841b4ca1907f53c15de
parentd83712ad678ae453f3342762c78142f851d3a2d3 (diff)
downloadllvm-3228abe8f9a7fc5b3b9f4a6de272f712a365476a.tar.gz
llvm-3228abe8f9a7fc5b3b9f4a6de272f712a365476a.tar.bz2
llvm-3228abe8f9a7fc5b3b9f4a6de272f712a365476a.tar.xz
docs/TestingGuide.html: correction to prev. text (objdir!=srcdir required for running test-suite), removed refs to llvm-test
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@68051 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--docs/TestingGuide.html10
1 files changed, 3 insertions, 7 deletions
diff --git a/docs/TestingGuide.html b/docs/TestingGuide.html
index cf40733eba..c93cc23378 100644
--- a/docs/TestingGuide.html
+++ b/docs/TestingGuide.html
@@ -695,8 +695,7 @@ will help you separate benign warnings from actual test failures.</p>
<p>First, all tests are executed within the LLVM object directory tree. They
<i>are not</i> executed inside of the LLVM source tree. This is because the
-test suite creates temporary files during execution. This means you must create
-a build tree separate from the LLVM source tree in which to run the test suite.</p>
+test suite creates temporary files during execution.</p>
<p>To run the test suite, you need to use the following steps:</p>
@@ -711,13 +710,10 @@ a build tree separate from the LLVM source tree in which to run the test suite.<
% svn co http://llvm.org/svn/llvm-project/test-suite/trunk test-suite
</pre>
</div>
- <p>This will get the test suite into <tt>llvm/projects/test-suite</tt>.
- <br>[The Makefiles expect the test suite directory to be named either
- <tt>test-suite</tt> or <tt>llvm-test</tt>. To be safe, use
- <tt>test-suite</tt> as in the above svn command line.]</p>
+ <p>This will get the test suite into <tt>llvm/projects/test-suite</tt>.</p>
</li>
<li><p>Configure llvm from the top level of each build tree (LLVM object directory tree)
- in which you want to run the test suite, just like what you do before building LLVM.</p>
+ in which you want to run the test suite, just as you do before building LLVM.</p>
<p>When running configure, you must either: (1) have <tt>llvm-gcc</tt>
in your path, or (2) specify the directory where <tt>llvm-gcc</tt> is
installed using <tt>--with-llvmgccdir=$LLVM_GCC_DIR</tt>.</p>