summaryrefslogtreecommitdiff
path: root/pexpect/tests/test_destructor.py
diff options
context:
space:
mode:
Diffstat (limited to 'pexpect/tests/test_destructor.py')
-rwxr-xr-xpexpect/tests/test_destructor.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/pexpect/tests/test_destructor.py b/pexpect/tests/test_destructor.py
index 5c54e1f..86bae08 100755
--- a/pexpect/tests/test_destructor.py
+++ b/pexpect/tests/test_destructor.py
@@ -33,6 +33,7 @@ class TestCaseDestructor(unittest.TestCase):
p2 = pexpect.spawn('ls -l')
p3 = pexpect.spawn('ls -l')
p4 = pexpect.spawn('ls -l')
+ time.sleep(1) # Some platforms are slow at gc... Solaris!
fd_t2 = (p1.child_fd,p2.child_fd,p3.child_fd,p4.child_fd)
p1.kill(9)
p2.kill(9)