From d732f9d1a2401a276e7e3aa237821b9dddcaea11 Mon Sep 17 00:00:00 2001 From: Ben Darnell Date: Mon, 4 Jul 2011 22:26:39 -0700 Subject: [PATCH] Disable this test on non-unix platforms --- tornado/test/process_test.py | 3 +++ 1 file changed, 3 insertions(+) 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 -- 2.47.3