summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNico Rieck <nico.rieck@gmail.com>2014-01-08 16:30:03 +0000
committerNico Rieck <nico.rieck@gmail.com>2014-01-08 16:30:03 +0000
commit113906398b4da33130e67b47010c59ba8f827085 (patch)
tree68bc14330b095a15a343e9b69b73c7d03c497f45
parente333ed217763e6135c9034d5168b390b6ab26547 (diff)
downloadllvm-113906398b4da33130e67b47010c59ba8f827085.tar.gz
llvm-113906398b4da33130e67b47010c59ba8f827085.tar.bz2
llvm-113906398b4da33130e67b47010c59ba8f827085.tar.xz
Remove mention of old deleted test scripts from testing guide
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@198771 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--docs/TestingGuide.rst18
1 files changed, 5 insertions, 13 deletions
diff --git a/docs/TestingGuide.rst b/docs/TestingGuide.rst
index c9a35cd746..eb61bdfc2c 100644
--- a/docs/TestingGuide.rst
+++ b/docs/TestingGuide.rst
@@ -404,20 +404,12 @@ To add more variables, look at ``test/lit.cfg``.
Other Features
--------------
-To make RUN line writing easier, there are several helper scripts and programs
-in the ``llvm/test/Scripts`` directory. This directory is in the PATH
-when running tests, so you can just call these scripts using their name.
-For example:
-
-``ignore``
- This script runs its arguments and then always returns 0. This is useful
- in cases where the test needs to cause a tool to generate an error (e.g.
- to check the error output). However, any program in a pipeline that
- returns a non-zero result will cause the test to fail. This script
- overcomes that issue and nicely documents that the test case is
- purposefully ignoring the result code of the tool
+To make RUN line writing easier, there are several helper programs. These
+helpers are in the PATH when running tests, so you can just call them using
+their name. For example:
+
``not``
- This script runs its arguments and then inverts the result code from it.
+ This program runs its arguments and then inverts the result code from it.
Zero result codes become 1. Non-zero result codes become 0.
Sometimes it is necessary to mark a test case as "expected fail" or