diff options
Diffstat (limited to 'tests/patcher_test_os_waitpid.py')
| -rw-r--r-- | tests/patcher_test_os_waitpid.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/patcher_test_os_waitpid.py b/tests/patcher_test_os_waitpid.py new file mode 100644 index 0000000..a6f421a --- /dev/null +++ b/tests/patcher_test_os_waitpid.py @@ -0,0 +1,9 @@ +# no standard tests in this file, ignore +__test__ = False + +if __name__ == '__main__': + import subprocess + import eventlet + eventlet.monkey_patch(all=False, os=True) + process = subprocess.Popen("sleep 0.1 && false", shell=True) + print(process.wait()) |
