diff options
| author | Robbie Harwood <rharwood@redhat.com> | 2016-12-07 20:15:14 +0000 |
|---|---|---|
| committer | Simo Sorce <simo@redhat.com> | 2017-01-12 11:52:20 -0500 |
| commit | 6ede5dd392d8b8dc1dd40fc406d33712f0aac830 (patch) | |
| tree | f9df238b5e18715701b02801d6cebb5dce745131 /proxy/tests/t_basic.py | |
| parent | 40729d65b10242d7c76691988994e673dcfad598 (diff) | |
Lower 30-second timeouts to 10
Since we actually hit some of these timeouts on purpose, this speeds up
the test suite rather noticeably.
Signed-off-by: Robbie Harwood <rharwood@redhat.com>
Reviewed-by: Simo Sorce <simo@redhat.com>
Diffstat (limited to 'proxy/tests/t_basic.py')
| -rwxr-xr-x | proxy/tests/t_basic.py | 4 |
1 files changed, 2 insertions, 2 deletions
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 |
