From: Ben Darnell Date: Tue, 5 Jul 2011 05:26:39 +0000 (-0700) Subject: Disable this test on non-unix platforms X-Git-Tag: v2.1.0~112 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d732f9d1a2401a276e7e3aa237821b9dddcaea11;p=thirdparty%2Ftornado.git Disable this test on non-unix platforms --- diff --git a/tornado/test/process_test.py b/tornado/test/process_test.py index 35d3325b1..93082a03b 100644 --- a/tornado/test/process_test.py +++ b/tornado/test/process_test.py @@ -96,3 +96,6 @@ class ProcessTest(LogTrapTestCase): os._exit(0) +if os.name != 'posix': + # All sorts of unixisms here + del ProcessTest