diff options
author | don bright <hugh.m.bright@gmail.com> | 2011-10-16 04:44:21 (GMT) |
---|---|---|
committer | don bright <hugh.m.bright@gmail.com> | 2011-10-16 04:44:21 (GMT) |
commit | 7735f5510cdc2d396092d04ed98a2dbaec347608 (patch) | |
tree | b97a7d472a310e5c3c5d2f69465c62b4e0bafc4e /tests/test_cmdline_tool.py | |
parent | e79ee827185e19daac8f4d2385cce44098374d64 (diff) |
opencsgtest and throwntogethertest windows fix
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: |