diff options
author | Chris Bieneman <beanz@apple.com> | 2016-01-26 22:53:12 +0000 |
---|---|---|
committer | Chris Bieneman <beanz@apple.com> | 2016-01-26 22:53:12 +0000 |
commit | bcc6f1913ffc2f902def0636091d0994fb17fc2e (patch) | |
tree | 106cb88ee320ce3dc3bde8f50792c66149c99065 /llvm/docs/TestingGuide.rst | |
parent | 90d9e8d37048f799d7e2174426f831a27cd0d23f (diff) | |
download | bcm5719-llvm-bcc6f1913ffc2f902def0636091d0994fb17fc2e.tar.gz bcm5719-llvm-bcc6f1913ffc2f902def0636091d0994fb17fc2e.zip |
Fixing the documentation builds
I broke the documentation builds when I deleted the MakefileGuide as part of the autoconf removal. At some point I'll need to do a more in-depth pass updating the documentation to remove references to the old build system.
llvm-svn: 258873
Diffstat (limited to 'llvm/docs/TestingGuide.rst')
-rw-r--r-- | llvm/docs/TestingGuide.rst | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/llvm/docs/TestingGuide.rst b/llvm/docs/TestingGuide.rst index 134ddd88c87..ced0fd34a6e 100644 --- a/llvm/docs/TestingGuide.rst +++ b/llvm/docs/TestingGuide.rst @@ -99,19 +99,11 @@ is in the ``test-suite`` module. See :ref:`test-suite Quickstart Regression tests ---------------- -To run all of the LLVM regression tests, use the master Makefile in the -``llvm/test`` directory. LLVM Makefiles require GNU Make (read the :doc:`LLVM -Makefile Guide <MakefileGuide>` for more details): +To run all of the LLVM regression tests use the check-llvm target: .. code-block:: bash - % make -C llvm/test - -or: - -.. code-block:: bash - - % make check + % make check-llvm If you have `Clang <http://clang.llvm.org/>`_ checked out and built, you can run the LLVM and Clang tests simultaneously using: |