This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author David.Edelsohn
Recipients David.Edelsohn
Date 2013-06-17.02:12:37
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1371435157.92.0.303179116379.issue18238@psf.upfronthosting.co.za>
In-reply-to
Content
test_signal.py wait_helper hangs on AIX.  Please skip the test on AIX for now to allow all other tests to run to completion.

diff -r bdd60bedf933 Lib/test/test_signal.py
--- a/Lib/test/test_signal.py   Sun Jun 16 18:37:53 2013 -0400
+++ b/Lib/test/test_signal.py   Mon Jun 17 00:10:01 2013 -0700
@@ -593,6 +593,7 @@
         """
         assert_python_ok('-c', code)
 
+    @unittest.skipIf(sys.platform == "aix7", "Test hangs on AIX")
     @unittest.skipUnless(hasattr(signal, 'pthread_sigmask'),
                          'need signal.pthread_sigmask()')
     def wait_helper(self, blocked, test):
History
Date User Action Args
2013-06-17 02:12:37David.Edelsohnsetrecipients: + David.Edelsohn
2013-06-17 02:12:37David.Edelsohnsetmessageid: <1371435157.92.0.303179116379.issue18238@psf.upfronthosting.co.za>
2013-06-17 02:12:37David.Edelsohnlinkissue18238 messages
2013-06-17 02:12:37David.Edelsohncreate