show cmd in runjsontests.py

This commit is contained in:
Christopher Dunn 2015-01-20 11:36:05 -06:00
parent 26c52861b9
commit ac6bbbc739

View File

@ -14,6 +14,7 @@ def getStatusOutput(cmd):
Return int, unicode (for both Python 2 and 3).
Note: os.popen().close() would return None for 0.
"""
print(cmd, file=sys.stderr)
pipe = os.popen(cmd)
process_output = pipe.read()
try: