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 vinay.sajip
Recipients vinay.sajip, vstinner
Date 2012-05-05.10:44:34
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1336214675.26.0.0531566496861.issue14729@psf.upfronthosting.co.za>
In-reply-to
Content
In test_faulthandler.test_check_fatal_error, the test expects a response which matches

"""
^Fatal Python error: {name}

{header}:
  File "<string>", line {lineno} in <module>$
""".strip()

On Windows, some more information is appended to the end of the message, so the match fails because of the trailing $. I propose to remove this $, so that the match succeeds just on the basis of the prefix.

Patch attached; I'll apply it soon, assuming you don't object.
History
Date User Action Args
2012-05-05 10:44:35vinay.sajipsetrecipients: + vinay.sajip, vstinner
2012-05-05 10:44:35vinay.sajipsetmessageid: <1336214675.26.0.0531566496861.issue14729@psf.upfronthosting.co.za>
2012-05-05 10:44:34vinay.sajiplinkissue14729 messages
2012-05-05 10:44:34vinay.sajipcreate