[asterisk-scf-commits] asterisk-scf/integration/testsuite.git branch "review" updated.
Commits to the Asterisk SCF project code repositories
asterisk-scf-commits at lists.digium.com
Wed Jun 1 21:08:49 CDT 2011
branch "review" has been updated
via c6491119a8ab021b9f1e2fd0223159fae2bb4490 (commit)
from 882a52699092734f71e010c4dc5f1382bd2c03b6 (commit)
Summary of changes:
lib/python/TestSuite.py | 12 ++++++------
1 files changed, 6 insertions(+), 6 deletions(-)
- Log -----------------------------------------------------------------
commit c6491119a8ab021b9f1e2fd0223159fae2bb4490
Author: Darren Sessions <dsessions at digium.com>
Date: Wed Jun 1 21:08:46 2011 -0500
and yet . . more debugging
diff --git a/lib/python/TestSuite.py b/lib/python/TestSuite.py
index a4e60f0..019c788 100644
--- a/lib/python/TestSuite.py
+++ b/lib/python/TestSuite.py
@@ -22,9 +22,9 @@ class utils():
def ping(self, host):
process = subprocess.Popen(
'ping -c1 %s' % host,
- #stdin=subprocess.PIPE,
- #stdout=subprocess.PIPE,
- #stderr=subprocess.PIPE,
+ stdin=subprocess.PIPE,
+ stdout=subprocess.PIPE,
+ stderr=subprocess.PIPE,
shell=True)
process.wait()
if process.returncode == 0:
@@ -69,9 +69,9 @@ class utils():
cmd,
bufsize=-1,
shell=False,
- stdin=subprocess.PIPE,
- stdout=subprocess.PIPE,
- stderr=subprocess.PIPE
+ #stdin=subprocess.PIPE,
+ #stdout=subprocess.PIPE,
+ #stderr=subprocess.PIPE
)
p.poll()
if wait == True:
-----------------------------------------------------------------------
--
asterisk-scf/integration/testsuite.git
More information about the asterisk-scf-commits
mailing list