summaryrefslogtreecommitdiffstats
path: root/testing
diff options
context:
space:
mode:
authorMats Wichmann <mats@linux.com>2020-05-08 20:14:50 (GMT)
committerMats Wichmann <mats@linux.com>2020-05-10 12:44:58 (GMT)
commit5ba1ee02355ee0f69dd6e821116e098b83fdf6d8 (patch)
tree45cc0668f99220a064643cfd70530f6d7f3b8788 /testing
parent600e0c897aaed2bf0f9ad6586925434103bfe389 (diff)
downloadSCons-5ba1ee02355ee0f69dd6e821116e098b83fdf6d8.zip
SCons-5ba1ee02355ee0f69dd6e821116e098b83fdf6d8.tar.gz
SCons-5ba1ee02355ee0f69dd6e821116e098b83fdf6d8.tar.bz2
Some more adjustments to doc build [ci skip]
other changes due to path changes rewording in doc howto rst check in the doc flow image used by the howto, as it's tricky to generate Signed-off-by: Mats Wichmann <mats@linux.com>
Diffstat (limited to 'testing')
-rw-r--r--testing/framework/test-framework.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/testing/framework/test-framework.rst b/testing/framework/test-framework.rst
index 16d3734..8cac1fb 100644
--- a/testing/framework/test-framework.rst
+++ b/testing/framework/test-framework.rst
@@ -31,8 +31,8 @@ There are three types of SCons tests:
*Unit Tests*
Unit tests for individual SCons modules live underneath the
- ``src/engine/`` subdirectory and are the same base name as the module
- to be tests, with ``Tests`` appended before the ``.py``. For example,
+ ``SCons/`` subdirectory and are the same base name as the module
+ to be tested, with ``Tests`` appended to the basename. For example,
the unit tests for the ``Builder.py`` module are in the
``BuilderTests.py`` script. Unit tests tend to be based on assertions.
@@ -110,7 +110,7 @@ to be more silent, have a look at the ``-q``, ``-s`` and ``-k`` options.
You may specifically list one or more tests to be run::
- $ python runtest.py src/engine/SCons/BuilderTests.py
+ $ python runtest.py SCons/BuilderTests.py
$ python runtest.py test/option-j.py test/Program.py
Folder names are allowed in the test list as well, so you can do::