diff -r d9a1a2eb3069 Lib/test/test_faulthandler.py --- a/Lib/test/test_faulthandler.py Thu Mar 31 13:11:40 2011 -0400 +++ b/Lib/test/test_faulthandler.py Thu Mar 31 15:44:11 2011 -0500 @@ -94,6 +94,7 @@ self.assertRegex(output, regex) self.assertNotEqual(exitcode, 0) + @support.skip_unless_unattended def test_read_null(self): self.check_fatal_error(""" import faulthandler @@ -145,6 +146,7 @@ 3, 'Illegal instruction') + @support.skip_unless_unattended def test_fatal_error(self): self.check_fatal_error(""" import faulthandler @@ -165,6 +167,7 @@ '(?:Segmentation fault|Bus error)', other_regex='unable to raise a stack overflow') + @support.skip_unless_unattended def test_gil_released(self): self.check_fatal_error(""" import faulthandler @@ -174,6 +177,7 @@ 3, '(?:Segmentation fault|Bus error)') + @support.skip_unless_unattended def test_enable_file(self): with temporary_filename() as filename: self.check_fatal_error(""" @@ -186,6 +190,7 @@ '(?:Segmentation fault|Bus error)', filename=filename) + @support.skip_unless_unattended def test_enable_threads(self): self.check_fatal_error(""" import faulthandler @@ -196,6 +201,7 @@ '(?:Segmentation fault|Bus error)', all_threads=True) + @support.skip_unless_unattended def test_disable(self): code = """ import faulthandler