summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWilliam Deegan <bill@baddogconsulting.com>2020-02-24 18:51:19 (GMT)
committerGitHub <noreply@github.com>2020-02-24 18:51:19 (GMT)
commit33e203b5dcf9bc8dc32f78f25d66890358efd1a3 (patch)
tree6a762eb84f33de397c23b96e8f39dcbfd45e6048
parentb6c8997131e5941aee3f77e8a8e7719e25b96462 (diff)
parent5c969e525aec3323415626d001c3ab28bd8942e4 (diff)
downloadSCons-33e203b5dcf9bc8dc32f78f25d66890358efd1a3.zip
SCons-33e203b5dcf9bc8dc32f78f25d66890358efd1a3.tar.gz
SCons-33e203b5dcf9bc8dc32f78f25d66890358efd1a3.tar.bz2
Merge pull request #3566 from mwichmann/runtest-noexec
Fix runtest no-exec mode
-rwxr-xr-xruntest.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/runtest.py b/runtest.py
index 57b4ba4..70f1385 100755
--- a/runtest.py
+++ b/runtest.py
@@ -368,14 +368,17 @@ class RuntestBase(object):
def __init__(self, path, num, spe=None):
self.path = path
self.num = num
+ self.stdout = self.stderr = self.status = None
self.abspath = os.path.abspath(path)
+ self.command_args = []
+ self.command_str = ""
+ self.test_time = self.total_time = 0
if spe:
for dir in spe:
f = os.path.join(dir, path)
if os.path.isfile(f):
self.abspath = f
break
- self.status = None
class SystemExecutor(RuntestBase):