Removed QMTest reference.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18640 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Tanya Lattner 2004-12-08 17:25:46 +00:00
parent 8f187242bb
commit d10bc6e0bb

View File

@ -186,19 +186,18 @@ directories:</p>
This subdirectory should contain tests that verify that your code This subdirectory should contain tests that verify that your code
works correctly. Automated tests are especially useful. works correctly. Automated tests are especially useful.
<p> <p>
Currently, the LLVM build system provides little support for tests, Currently, the LLVM build system provides basic support for tests.
although some exists. Expanded support for tests will hopefully The LLVM system provides the following:
occur in the future. In the meantime, the LLVM system does provide the
following:
<ul> <ul>
<li> <li>
LLVM provides several QMTest test classes that can be used to LLVM provides a tcl procedure that is used by Dejagnu to run
create tests. They can be found in tests. It can be found in <tt>llvm/lib/llvm-dg.exp</tt>. This
<tt>llvm/test/QMTest/llvm.py</tt>. These test classes perform a test procedure uses RUN lines in the actual test case to determine
variety of functions, including code optimization tests, assembly how to run the test. See the <a
tests, and code analysis tests. The Makefile in href="TestingGuide.html">TestingGuide</a> for more details. You
<tt>llvm/test</tt> provides the QMTest context needed by LLVM test can easily write Makefile support similar to the Makefiles in <tt>llvm/test</tt>
classes. to use Dejagnu to run your project's tests.</li>
<p> <p>
<li> <li>