[llvm] 221979b - Document the testing of Analyses in the LLVM testing guide (NFC)
Mehdi Amini via llvm-commits
llvm-commits at lists.llvm.org
Wed Jul 15 14:12:22 PDT 2020
Author: Mehdi Amini
Date: 2020-07-15T21:11:49Z
New Revision: 221979b6913667dc52b03b181a9349c1b73dbd52
URL: https://github.com/llvm/llvm-project/commit/221979b6913667dc52b03b181a9349c1b73dbd52
DIFF: https://github.com/llvm/llvm-project/commit/221979b6913667dc52b03b181a9349c1b73dbd52.diff
LOG: Document the testing of Analyses in the LLVM testing guide (NFC)
This came up in a recent review, someone was wondering were was
this all documented and I couldn't find a reference to provide.
Differential Revision: https://reviews.llvm.org/D83816
Added:
Modified:
llvm/docs/TestingGuide.rst
Removed:
################################################################################
diff --git a/llvm/docs/TestingGuide.rst b/llvm/docs/TestingGuide.rst
index c8ee65f132f9..2e937f000627 100644
--- a/llvm/docs/TestingGuide.rst
+++ b/llvm/docs/TestingGuide.rst
@@ -47,6 +47,9 @@ Unit tests
Unit tests are written using `Google Test <https://github.com/google/googletest/blob/master/googletest/docs/primer.md>`_
and `Google Mock <https://github.com/google/googletest/blob/master/googlemock/docs/for_dummies.md>`_
and are located in the ``llvm/unittests`` directory.
+In general unit tests are reserved for targeting the support library and other
+generic data structure, we prefer relying on regression tests for testing
+transformations and analysis on the IR.
Regression tests
----------------
@@ -62,6 +65,17 @@ enough code to reproduce the problem should be written and placed
somewhere underneath this directory. For example, it can be a small
piece of LLVM IR distilled from an actual application or benchmark.
+Testing Analysis
+----------------
+
+An analysis is a pass that infer properties on some part of the IR and not
+transforming it. They are tested in general using the same infrastructure as the
+regression tests, by creating a separate "Printer" pass to consume the analysis
+result and print it on the standard output in a textual format suitable for
+FileCheck.
+See `llvm/test/Analysis/BranchProbabilityInfo/loop.ll <https://github.com/llvm/llvm-project/blob/master/llvm/test/Analysis/BranchProbabilityInfo/loop.ll>`_
+for an example of such test.
+
``test-suite``
--------------
@@ -151,7 +165,7 @@ script which is built as part of LLVM. For example, to run the
.. code-block:: bash
- % llvm-lit ~/llvm/test/Integer/BitPacked.ll
+ % llvm-lit ~/llvm/test/Integer/BitPacked.ll
or to run all of the ARM CodeGen tests:
@@ -184,7 +198,7 @@ Writing new regression tests
----------------------------
The regression test structure is very simple, but does require some
-information to be set. This information is gathered via ``configure``
+information to be set. This information is gathered via ``cmake``
and is written to a file, ``test/lit.site.cfg`` in the build directory.
The ``llvm/test`` Makefile does this work for you.
@@ -426,7 +440,7 @@ will be a failure if its execution succeeds.
``REQUIRES`` and ``UNSUPPORTED`` and ``XFAIL`` all accept a comma-separated
list of boolean expressions. The values in each expression may be:
-- Features added to ``config.available_features`` by
+- Features added to ``config.available_features`` by
configuration files such as ``lit.cfg``.
- Substrings of the target triple (``UNSUPPORTED`` and ``XFAIL`` only).
@@ -491,7 +505,7 @@ RUN lines:
character with a ``/``. This is useful to normalize path separators.
Example: ``%s: C:\Desktop Files/foo_test.s.tmp``
-
+
Example: ``%/s: C:/Desktop Files/foo_test.s.tmp``
``%:s, %:S, %:t, %:T:``
More information about the llvm-commits
mailing list