]> git.ipfire.org Git - thirdparty/tornado.git/commitdiff
Disable this test on non-unix platforms
authorBen Darnell <ben@bendarnell.com>
Tue, 5 Jul 2011 05:26:39 +0000 (22:26 -0700)
committerBen Darnell <ben@bendarnell.com>
Tue, 5 Jul 2011 05:26:39 +0000 (22:26 -0700)
tornado/test/process_test.py

index 35d3325b11ce98fabf0bf5d7b5360391e1b85fa8..93082a03b4b2b0f388b2a96ff6f4c1ce8a703b35 100644 (file)
@@ -96,3 +96,6 @@ class ProcessTest(LogTrapTestCase):
             os._exit(0)
             
 
+if os.name != 'posix':
+    # All sorts of unixisms here
+    del ProcessTest