diff --git a/docs/Projects.html b/docs/Projects.html
index ecdb35b54c6..d708c8eda35 100644
--- a/docs/Projects.html
+++ b/docs/Projects.html
@@ -186,19 +186,18 @@ directories:
This subdirectory should contain tests that verify that your code
works correctly. Automated tests are especially useful.
- 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:
-
- LLVM provides several QMTest test classes that can be used to
- create tests. They can be found in
- llvm/test/QMTest/llvm.py. These test classes perform a
- variety of functions, including code optimization tests, assembly
- tests, and code analysis tests. The Makefile in
- llvm/test 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 llvm/lib/llvm-dg.exp. This
+ test procedure uses RUN lines in the actual test case to determine
+ how to run the test. See the TestingGuide for more details. You
+ can easily write Makefile support similar to the Makefiles in llvm/test
+ to use Dejagnu to run your project's tests.
+
-