diff options
-rw-r--r-- | proxy/tests/t_acquire.py | 2 | ||||
-rwxr-xr-x | proxy/tests/t_basic.py | 4 | ||||
-rw-r--r-- | proxy/tests/t_impersonate.py | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/proxy/tests/t_acquire.py b/proxy/tests/t_acquire.py index f0cc2d7..b9edbba 100644 --- a/proxy/tests/t_acquire.py +++ b/proxy/tests/t_acquire.py @@ -24,7 +24,7 @@ def run(testdir, env, conf, expected_failure=False): p1 = subprocess.Popen(cmd, stderr=subprocess.STDOUT, stdout=logfile, env=testenv, preexec_fn=os.setsid) try: - p1.wait(30) + p1.wait(10) except subprocess.TimeoutExpired: # p1.returncode is set to None here pass diff --git a/proxy/tests/t_basic.py b/proxy/tests/t_basic.py index f221e6f..faa13c3 100755 --- a/proxy/tests/t_basic.py +++ b/proxy/tests/t_basic.py @@ -42,8 +42,8 @@ def run(testdir, env, conf, expected_failure=False): stderr=logfile, env=svcenv, preexec_fn=os.setsid) try: - p1.wait(30) - p2.wait(30) + p1.wait(10) + p2.wait(10) except subprocess.TimeoutExpired: # {p1,p2}.returncode are set to None here pass diff --git a/proxy/tests/t_impersonate.py b/proxy/tests/t_impersonate.py index 92a1d1d..43bb084 100644 --- a/proxy/tests/t_impersonate.py +++ b/proxy/tests/t_impersonate.py @@ -23,7 +23,7 @@ def run(testdir, env, conf, expected_failure=False): p1 = subprocess.Popen(cmd, stderr=subprocess.STDOUT, stdout=logfile, env=testenv, preexec_fn=os.setsid) try: - p1.wait(30) + p1.wait(10) except subprocess.TimeoutExpired: # p1.returncode is set to None here pass |