diff options
author | Tanya Lattner <tonic@nondot.org> | 2004-12-08 17:25:46 +0000 |
---|---|---|
committer | Tanya Lattner <tonic@nondot.org> | 2004-12-08 17:25:46 +0000 |
commit | e6ebbd70cab0efe62abb7d2de5f86925ce8995f5 (patch) | |
tree | 97ec605c752357757903b4bc6ed8831d924bdfb8 | |
parent | c31724bfe2ae2c0023a800c0fbce36d75951a21b (diff) | |
download | bcm5719-llvm-e6ebbd70cab0efe62abb7d2de5f86925ce8995f5.tar.gz bcm5719-llvm-e6ebbd70cab0efe62abb7d2de5f86925ce8995f5.zip |
Removed QMTest reference.
llvm-svn: 18640
-rw-r--r-- | llvm/docs/Projects.html | 21 |
1 files changed, 10 insertions, 11 deletions
diff --git a/llvm/docs/Projects.html b/llvm/docs/Projects.html index ecdb35b54c6..d708c8eda35 100644 --- a/llvm/docs/Projects.html +++ b/llvm/docs/Projects.html @@ -186,19 +186,18 @@ directories:</p> This subdirectory should contain tests that verify that your code works correctly. Automated tests are especially useful. <p> - Currently, the LLVM build system provides little support for tests, - although some exists. Expanded support for tests will hopefully - occur in the future. In the meantime, the LLVM system does provide the - following: + Currently, the LLVM build system provides basic support for tests. + The LLVM system provides the following: <ul> <li> - LLVM provides several QMTest test classes that can be used to - create tests. They can be found in - <tt>llvm/test/QMTest/llvm.py</tt>. These test classes perform a - variety of functions, including code optimization tests, assembly - tests, and code analysis tests. The Makefile in - <tt>llvm/test</tt> provides the QMTest context needed by LLVM test - classes. + LLVM provides a tcl procedure that is used by Dejagnu to run + tests. It can be found in <tt>llvm/lib/llvm-dg.exp</tt>. This + test procedure uses RUN lines in the actual test case to determine + how to run the test. See the <a + href="TestingGuide.html">TestingGuide</a> for more details. You + can easily write Makefile support similar to the Makefiles in <tt>llvm/test</tt> + to use Dejagnu to run your project's tests.</li> + <p> <li> |