Skip to content

Commit 9e7b4dd

Browse files
committed
Add debug print stmts
1 parent 62ba7b3 commit 9e7b4dd

2 files changed

Lines changed: 2 additions & 0 deletions

File tree

tools/run_tests/python_utils/dockerjob.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -155,6 +155,7 @@ class DockerJob:
155155
"""Encapsulates a job"""
156156

157157
def __init__(self, spec):
158+
print('DockerJob:__init__ called with spec ' + spec, flush=True)
158159
self._spec = spec
159160
self._job = jobset.Job(
160161
spec, newline_on_success=True, travis=True, add_env={}

tools/run_tests/python_utils/jobset.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -280,6 +280,7 @@ class Job(object):
280280
def __init__(
281281
self, spec, newline_on_success, travis, add_env, quiet_success=False
282282
):
283+
print('Job called for spec' + spec.shortname, flush=True)
283284
self._spec = spec
284285
self._newline_on_success = newline_on_success
285286
self._travis = travis

0 commit comments

Comments
 (0)