aboutsummaryrefslogtreecommitdiffstats
path: root/docs/TestingGuide.rst
diff options
context:
space:
mode:
authorDmitri Gribenko <gribozavr@gmail.com>2012-12-30 14:51:03 +0000
committerDmitri Gribenko <gribozavr@gmail.com>2012-12-30 14:51:03 +0000
commit0d80c9c8c78279124bb0d7e275c2b634ca640fef (patch)
treea2fc0b75b452aeb5a25ed18bbe7aa9d37b85f823 /docs/TestingGuide.rst
parent94e94b350652d3a71993bbc7d44afbe3b304605e (diff)
downloadexternal_llvm-0d80c9c8c78279124bb0d7e275c2b634ca640fef.zip
external_llvm-0d80c9c8c78279124bb0d7e275c2b634ca640fef.tar.gz
external_llvm-0d80c9c8c78279124bb0d7e275c2b634ca640fef.tar.bz2
Documentation: add a section to prevent spurious test failures like the one
fixed in r171243. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@171258 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/TestingGuide.rst')
-rw-r--r--docs/TestingGuide.rst37
1 files changed, 37 insertions, 0 deletions
diff --git a/docs/TestingGuide.rst b/docs/TestingGuide.rst
index f66cae1..f26d1bf 100644
--- a/docs/TestingGuide.rst
+++ b/docs/TestingGuide.rst
@@ -262,6 +262,43 @@ recommended way to examine output to figure out if the test passes it using the
:doc:`FileCheck tool <CommandGuide/FileCheck>`. The usage of ``grep`` in RUN
lines is discouraged.
+Fragile tests
+-------------
+
+It is easy to write a fragile test that would fail spuriously if the tool being
+tested outputs a full path to the input file. For example, :program:`opt` by
+default outputs a ``ModuleID``:
+
+.. code-block:: console
+
+ $ cat example.ll
+ define i32 @main() nounwind {
+ ret i32 0
+ }
+
+ $ opt -S /path/to/example.ll
+ ; ModuleID = '/path/to/example.ll'
+
+ define i32 @main() nounwind {
+ ret i32 0
+ }
+
+``ModuleID`` can unexpetedly match against ``CHECK`` lines. For example:
+
+.. code-block:: llvm
+
+ ; RUN: opt -S %s | FileCheck
+
+ define i32 @main() nounwind {
+ ; CHECK-NOT: load
+ ret i32 0
+ }
+
+This test will fail if placed into a ``download`` directory.
+
+To make your tests robust, always use ``opt ... < %s`` in the RUN line.
+:program:`opt` does not output a ``ModuleID`` when input comes from stdin.
+
The FileCheck utility
---------------------