Re: [Piglit] [PATCH v5 4/4] framework/test/base.py: use subprocess32 for timeouts.

2016-01-06 Thread Dylan Baker
Bump. On Wed, Dec 16, 2015 at 4:52 PM, wrote: > From: Dylan Baker > > Subprocess32 provides a backport of python 3.2's subprocess module, > which has a timeout parameter for Popen.communicate. When the timeout > runs out then an exception is raised, and when that exception is caught > we can ki

[Piglit] [PATCH v5 4/4] framework/test/base.py: use subprocess32 for timeouts.

2015-12-16 Thread baker . dylan . c
From: Dylan Baker Subprocess32 provides a backport of python 3.2's subprocess module, which has a timeout parameter for Popen.communicate. When the timeout runs out then an exception is raised, and when that exception is caught we can kill the process. This is fairly similar to the way the curre