summaryrefslogtreecommitdiff
path: root/docs/TestingGuide.html
diff options
context:
space:
mode:
authorJohn Criswell <criswell@uiuc.edu>2004-12-10 15:51:16 +0000
committerJohn Criswell <criswell@uiuc.edu>2004-12-10 15:51:16 +0000
commit9e2485c1227c426910f87e342022c71fe1a916a3 (patch)
tree1ea57894bb7064f3971ed00e4f36a9683ffac559 /docs/TestingGuide.html
parent5aefa8a6fec1cdf2e8be74195df8d3739ce73c14 (diff)
downloadllvm-9e2485c1227c426910f87e342022c71fe1a916a3.tar.gz
llvm-9e2485c1227c426910f87e342022c71fe1a916a3.tar.bz2
llvm-9e2485c1227c426910f87e342022c71fe1a916a3.tar.xz
Merged in RELEASE_14 changes.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18763 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/TestingGuide.html')
-rw-r--r--docs/TestingGuide.html14
1 files changed, 8 insertions, 6 deletions
diff --git a/docs/TestingGuide.html b/docs/TestingGuide.html
index b08d96c83b..ca48bd46d2 100644
--- a/docs/TestingGuide.html
+++ b/docs/TestingGuide.html
@@ -102,7 +102,7 @@ regression tests are in the main "llvm" module under the directory
programs in C and C++ is in the <tt>llvm-test</tt> module. This module should
be checked out to the <tt>llvm/projects</tt> directory. When you
<tt>configure</tt> the <tt>llvm</tt> module, the <tt>llvm-test</tt> module
-will be automatically configured. Or you can do it manually.</p>
+will be automatically configured. Alternatively, you can configure the <tt>llvm-test</tt> module manually.</p>
<p>To run all of the simple tests in LLVM using DejaGNU, use the master Makefile in the
<tt>llvm/test</tt> directory:</p>
<pre>
@@ -140,7 +140,7 @@ programs), run the <tt>llvm-test</tt> tests:</p>
<p>The LLVM test suite contains two major categories of tests: code
fragments and whole programs. Code fragments are in the <tt>llvm</tt> module
under the directory under the <tt>llvm/test</tt> directory. The whole programs
-test suite are n the <tt>llvm-test</tt> module under the main directory.</p>
+test suite are in the <tt>llvm-test</tt> module under the main directory.</p>
</div>
@@ -251,12 +251,13 @@ location of these external programs is configured by the llvm-test
<div class="doc_text">
<p>The LLVM test suite is partially driven by DejaGNU and partially
driven by GNU Make. Specifically, the Features and Regression tests
-are all driven by DejaGNU. The llvm-test
+are all driven by DejaGNU. The <tt>llvm-test</tt>
module is currently driven by a set of Makefiles.</p>
<p>The DejaGNU structure is very simple, but does require some
-information to be set. This information is gathered via configure and
-is written to a file, <tt>site.exp</tt> in llvm/test. The llvm/test
+information to be set. This information is gathered via <tt>configure</tt> and
+is written to a file, <tt>site.exp</tt> in <tt>llvm/test</tt>. The
+<tt>llvm/test</tt>
Makefile does this work for you.</p>
<p>In order for DejaGNU to work, each directory of tests must have a
@@ -392,7 +393,8 @@ test suite creates temporary files during execution.</p>
tests. By default, it will run all of these tests.</p>
<p>To run only the DejaGNU driven tests, run <tt>gmake</tt> at the
-command line in llvm/tests. To run a specific directory of tests, specify the TESTSUITE.
+command line in llvm/tests. To run a specific directory of tests, use the
+TESTSUITE variable.
</p>
<p>For example, to run the Regression tests, type