diff options
author | Craig Tiller <ctiller@google.com> | 2016-11-30 17:12:54 -0800 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2016-11-30 17:12:54 -0800 |
commit | 80a675005d4545cb50c54bc292339b69f2304b04 (patch) | |
tree | b3a5daef5430294d9f9216248c69671e85a62d8b /tools/run_tests | |
parent | a9cc625b26ad64918712450a1b706858325766f9 (diff) |
debug
Diffstat (limited to 'tools/run_tests')
-rwxr-xr-x | tools/run_tests/jobset.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/run_tests/jobset.py b/tools/run_tests/jobset.py index b84eb3b5d7..fa006bbd76 100755 --- a/tools/run_tests/jobset.py +++ b/tools/run_tests/jobset.py @@ -52,6 +52,8 @@ _MAX_RESULT_SIZE = 8192 def sanitized_environment(env): sanitized = {} for key, value in env.items(): + print(key) + print(value) sanitized[str(key).encode()] = str(value).encode() return sanitized |