[issue14771] Occasional failure in test_ioctl when run parallel with test_gdb

Antoine Pitrou report at bugs.python.org
Wed Jan 23 20:34:46 CET 2013


Antoine Pitrou added the comment:

Given what _check_ioctl_mutate_len() seems to be designed to check, perhaps we should relax:

        self.assertIn(rpgrp, ids)

into:

        self.assertNotEqual(rpgrp, fill)

or perhaps simply:

        self.assertGreater(rpgrp, 0)

----------

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue14771>
_______________________________________


More information about the Python-bugs-list mailing list