summaryrefslogtreecommitdiffstats
path: root/test/framework.py
diff options
context:
space:
mode:
authorDave Wallace <dwallacelf@gmail.com>2021-05-20 14:01:51 -0400
committerPaul Vinciguerra <pvinci@vinciconsulting.com>2021-05-21 15:21:01 +0000
commit4ee17d859ed2f374997939511078559c26981ad0 (patch)
treec9b44351bac6113a0aea29aed21bf64cda58a449 /test/framework.py
parente2353a7f6c680ef50bc41892a4503168406b7787 (diff)
tests: add role to VCLAppWorker
- Improve readability of log output with respect to worker role Type: test Signed-off-by: Dave Wallace <dwallacelf@gmail.com> Change-Id: I1a5787421b31483fa1a2558951568417dfc111d9
Diffstat (limited to 'test/framework.py')
-rwxr-xr-xtest/framework.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/test/framework.py b/test/framework.py
index 0acc1603bd4..c2a2fc68430 100755
--- a/test/framework.py
+++ b/test/framework.py
@@ -1721,8 +1721,9 @@ class Worker(Thread):
self.result = os.EX_OSFILE
raise EnvironmentError(
"executable '%s' is not found or executable." % executable)
- self.logger.debug("Running executable: '{app}'"
- .format(app=' '.join(self.args)))
+ self.logger.debug("Running executable '{app}': '{cmd}'"
+ .format(app=self.app_name,
+ cmd=' '.join(self.args)))
env = os.environ.copy()
env.update(self.env)
env["CK_LOG_FILE_NAME"] = "-"