diff options
Diffstat (limited to 'tests/test_cmdline_tool.py')
-rwxr-xr-x | tests/test_cmdline_tool.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/tests/test_cmdline_tool.py b/tests/test_cmdline_tool.py index f4b9138..e6a84cf 100755 --- a/tests/test_cmdline_tool.py +++ b/tests/test_cmdline_tool.py @@ -57,7 +57,6 @@ def execute_and_redirect(cmd, params, outfile): return retval def get_normalized_text(filename): - print >> sys.stderr, "debug normalize" , filename text = open(filename).read() return text.strip("\r\n").replace("\r\n", "\n") + "\n" @@ -146,7 +145,6 @@ def run_test(testname, cmd, args): outfile = open(outputname, "wb") try: - print >> sys.stderr, "debug ", [cmd], args, [outputname] proc = subprocess.Popen([cmd] + args + [outputname], stdout=subprocess.PIPE, stderr=subprocess.PIPE) errtext = proc.communicate()[1] if errtext != None and len(errtext) > 0: |