diff options
author | Davide Italiano <davide@freebsd.org> | 2019-02-03 20:37:13 +0000 |
---|---|---|
committer | Davide Italiano <davide@freebsd.org> | 2019-02-03 20:37:13 +0000 |
commit | 1002ab3d1cd939fef89b717d9119dd07cea1cc41 (patch) | |
tree | 9164eeec8a435cc8d2e6fbf57c72735e359cc8d1 /llvm/docs/TestingGuide.rst | |
parent | 73929c4d240fd7c1ade94b9aeab808777a6fe9e9 (diff) | |
download | bcm5719-llvm-1002ab3d1cd939fef89b717d9119dd07cea1cc41.tar.gz bcm5719-llvm-1002ab3d1cd939fef89b717d9119dd07cea1cc41.zip |
[docs] Recommend assertions when testing.
Pointed out by Shoaib Meenai.
llvm-svn: 353008
Diffstat (limited to 'llvm/docs/TestingGuide.rst')
-rw-r--r-- | llvm/docs/TestingGuide.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/docs/TestingGuide.rst b/llvm/docs/TestingGuide.rst index 9908d575903..949fecf4ccf 100644 --- a/llvm/docs/TestingGuide.rst +++ b/llvm/docs/TestingGuide.rst @@ -127,7 +127,7 @@ in release mode, i.e. .. code-block:: bash - % cmake -DCMAKE_BUILD_TYPE="Release" + % cmake -DCMAKE_BUILD_TYPE="Release" -DLLVM_ENABLE_ASSERTIONS=On If you have `Clang <http://clang.llvm.org/>`_ checked out and built, you can run the LLVM and Clang tests simultaneously using: |