summaryrefslogtreecommitdiff
path: root/runtest.py
diff options
context:
space:
mode:
authoranatoly techtonik <techtonik@gmail.com>2014-03-20 15:14:09 +0300
committeranatoly techtonik <techtonik@gmail.com>2014-03-20 15:14:09 +0300
commit116eef839e018bbdd867311fddf1cfc1f8a10d8c (patch)
tree387596f191c7ff3411b933932c87e33ea22fedd9 /runtest.py
parente51dea15a19893927496060ac3e766815057af84 (diff)
downloadscons-116eef839e018bbdd867311fddf1cfc1f8a10d8c.tar.gz
runtest.py: "module tests" are properly named "end-to-end" tests
Diffstat (limited to 'runtest.py')
-rwxr-xr-xruntest.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/runtest.py b/runtest.py
index 244d3aba..eee88dc5 100755
--- a/runtest.py
+++ b/runtest.py
@@ -6,8 +6,9 @@
#
# SCons test suite consists of:
#
-# - unit tests - included in *Tests.py files from src/ dir
-# - module tests - are in test/ dir and use framework from QMTest/
+# - unit tests - included in *Tests.py files from src/ dir
+# - end-to-end tests - these are *.py files in test/ directory that
+# require custom SCons framework from QMTest/
#
# This script adds src/ and QMTest/ directories to PYTHONPATH,
# performs test discovery and processes them according to options.
@@ -655,7 +656,7 @@ def find_Tests_py(directory):
return sorted(result)
def find_py(directory):
- """ Look for module tests """
+ """ Look for end-to-end tests """
result = []
for dirpath, dirnames, filenames in os.walk(directory):
# Skip folders containing a sconstest.skip file