summaryrefslogtreecommitdiffstats
path: root/runtest.py
diff options
context:
space:
mode:
Diffstat (limited to 'runtest.py')
-rwxr-xr-xruntest.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/runtest.py b/runtest.py
index ae456a2..75e9eb7 100755
--- a/runtest.py
+++ b/runtest.py
@@ -663,6 +663,7 @@ def find_Tests_py(directory):
def find_py(directory):
""" Look for end-to-end tests """
result = []
+
for dirpath, dirnames, filenames in os.walk(directory):
# Skip folders containing a sconstest.skip file
if 'sconstest.skip' in filenames:
@@ -707,6 +708,8 @@ else:
testpaths = args
for tp in testpaths:
+ # Clean up path so it can match startswith's below
+ tp = os.path.normpath(tp)
for path in glob.glob(tp):
if os.path.isdir(path):
if path.startswith('src'):