diff options
author | Nico Rieck <nico.rieck@gmail.com> | 2014-01-08 16:30:03 +0000 |
---|---|---|
committer | Nico Rieck <nico.rieck@gmail.com> | 2014-01-08 16:30:03 +0000 |
commit | ea623c6f1083e1c80e35c033f6cc7bd35f996801 (patch) | |
tree | 175e8f4ec0f56cf9466f2d9b608738c79c59757b /llvm/docs/TestingGuide.rst | |
parent | e21cb742249979c7e4584fded47e9da2445ebcd9 (diff) | |
download | bcm5719-llvm-ea623c6f1083e1c80e35c033f6cc7bd35f996801.tar.gz bcm5719-llvm-ea623c6f1083e1c80e35c033f6cc7bd35f996801.zip |
Remove mention of old deleted test scripts from testing guide
llvm-svn: 198771
Diffstat (limited to 'llvm/docs/TestingGuide.rst')
-rw-r--r-- | llvm/docs/TestingGuide.rst | 18 |
1 files changed, 5 insertions, 13 deletions
diff --git a/llvm/docs/TestingGuide.rst b/llvm/docs/TestingGuide.rst index c9a35cd7463..eb61bdfc2c1 100644 --- a/llvm/docs/TestingGuide.rst +++ b/llvm/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 |