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 martin.panter
Recipients StyXman, christian.heimes, martin.panter, neologix, vstinner
Date 2016-06-09.10:55:45
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1465469745.13.0.887165776008.issue26826@psf.upfronthosting.co.za>
In-reply-to
Content
It’s a bit ugly, but I would write the test so that it is recorded as skipped:

try:
    os.copy_file_range(...)
except OSError as err:
    if err.errno != ENOSYS:
        raise  # We get to see the full exception details
    self.skipTest(err)  # Test is recorded as skipped, not passed
History
Date User Action Args
2016-06-09 10:55:45martin.pantersetrecipients: + martin.panter, vstinner, christian.heimes, StyXman, neologix
2016-06-09 10:55:45martin.pantersetmessageid: <1465469745.13.0.887165776008.issue26826@psf.upfronthosting.co.za>
2016-06-09 10:55:45martin.panterlinkissue26826 messages
2016-06-09 10:55:45martin.pantercreate