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 vstinner
Recipients Arfrever, Mark.Shannon, amaury.forgeotdarc, asvetlov, benjamin.peterson, brett.cannon, dmalcolm, ilblackdragon, jcea, jkloth, larry, lemburg, mark.dickinson, python-dev, vstinner
Date 2013-06-25.20:12:08
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1372191128.29.0.753195079295.issue17206@psf.upfronthosting.co.za>
In-reply-to
Content
"I enabled faulthandler in subprocesses created by test.regrtest and test.script_helper..."

Oh, it doesn't help for this issue. On Windows, faulthandler is unable to dump the Python traceback on a stack overflow. On UNIX, it allocates a diffrent stack for its signal handler, and so the signal handler can run even on a stack overflow.

The Windows exit code 0xC00000FD (3221225725) means "Stack overflow / exhaustion".

[ 81/375] test_marshal
Traceback (most recent call last):
  File "../lib/test/regrtest.py", line 1618, in <module>
    main_in_temp_cwd()
  File "../lib/test/regrtest.py", line 1593, in main_in_temp_cwd
    main()
  File "../lib/test/regrtest.py", line 775, in main
    raise Exception("Child error on {}: {}".format(test, result[1]))
Exception: Child error on test_marshal: Exit code 3221225725
History
Date User Action Args
2013-06-25 20:12:08vstinnersetrecipients: + vstinner, lemburg, brett.cannon, jcea, amaury.forgeotdarc, mark.dickinson, larry, benjamin.peterson, jkloth, Arfrever, asvetlov, dmalcolm, Mark.Shannon, python-dev, ilblackdragon
2013-06-25 20:12:08vstinnersetmessageid: <1372191128.29.0.753195079295.issue17206@psf.upfronthosting.co.za>
2013-06-25 20:12:08vstinnerlinkissue17206 messages
2013-06-25 20:12:08vstinnercreate