aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/run_tests
diff options
context:
space:
mode:
authorGravatar Mark D. Roth <roth@google.com>2016-12-01 23:35:22 +0000
committerGravatar Mark D. Roth <roth@google.com>2016-12-01 23:35:22 +0000
commit405abfcba2735b10403aa946bdb5d37d19b93eb1 (patch)
tree8917e8b952305c7c3e66c05d540e5b7258838a37 /tools/run_tests
parent562b684e193755e0838f4d2fcda5e1f147005701 (diff)
Move hex dump to before crash.
Diffstat (limited to 'tools/run_tests')
-rwxr-xr-xtools/run_tests/jobset.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/run_tests/jobset.py b/tools/run_tests/jobset.py
index 403dcc9c78..60c8c19758 100755
--- a/tools/run_tests/jobset.py
+++ b/tools/run_tests/jobset.py
@@ -56,11 +56,11 @@ def sanitized_environment(env):
print("key=", key)
print("type(value)=", type(value))
print("value=", value)
+ print("value hex dump:", ' '.join('%x' % ord(c) for c in value))
print("type(key.encode(errors='ignore'))=", type(key.encode(errors='ignore')))
print("key.encode(errors='ignore')=", key.encode(errors='ignore'))
print("type(value.encode(errors='ignore'))=", type(value.encode(errors='ignore')))
print("value.encode(errors='ignore')=", value.encode(errors='ignore'))
- print("value hex dump:", ' '.join('%x' % ord(c) for c in value))
sanitized[key.encode(errors='ignore')] = value.encode(errors='ignore')
return sanitized