From ac6bbbc7392293fec3721b1cec1df2f846b9aa11 Mon Sep 17 00:00:00 2001 From: Christopher Dunn Date: Tue, 20 Jan 2015 11:36:05 -0600 Subject: [PATCH] show cmd in runjsontests.py --- test/runjsontests.py | 1 + 1 file changed, 1 insertion(+) diff --git a/test/runjsontests.py b/test/runjsontests.py index ffe033f..5230965 100644 --- a/test/runjsontests.py +++ b/test/runjsontests.py @@ -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: