From 87c0c6d3812666872fbb33ace8a9cb0c56c780ef Mon Sep 17 00:00:00 2001 From: Marcelo Matus Date: Sun, 4 Dec 2005 05:06:53 +0000 Subject: [PATCH] shorter sleep git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@7922 626c5289-ae23-0410-ae9c-e8d60b6d4f22 --- Examples/test-suite/python/director_thread.i | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Examples/test-suite/python/director_thread.i b/Examples/test-suite/python/director_thread.i index 475c18369..306176271 100644 --- a/Examples/test-suite/python/director_thread.i +++ b/Examples/test-suite/python/director_thread.i @@ -27,7 +27,7 @@ extern "C" void* working(void* t); void run() { pthread_create(t,NULL,working,this); - sleep(5); + sleep(2); } virtual void do_foo() {