mirror of
https://github.com/python/cpython.git
synced 2025-10-02 05:12:23 +00:00
Fix buildbot failure in test_os.py
This commit is contained in:
parent
1ce3a6864c
commit
213bcb8de1
2 changed files with 4 additions and 2 deletions
|
@ -3,7 +3,10 @@
|
||||||
Roger E. Masse revised strategy by Barry Warsaw
|
Roger E. Masse revised strategy by Barry Warsaw
|
||||||
"""
|
"""
|
||||||
from test.test_support import verbose,TestSkipped, import_module
|
from test.test_support import verbose,TestSkipped, import_module
|
||||||
|
import warnings
|
||||||
|
warnings.simplefilter('always')
|
||||||
dl = import_module('dl', deprecated=True)
|
dl = import_module('dl', deprecated=True)
|
||||||
|
warnings.resetwarnings()
|
||||||
|
|
||||||
sharedlibs = [
|
sharedlibs = [
|
||||||
('/usr/lib/libc.so', 'getpid'),
|
('/usr/lib/libc.so', 'getpid'),
|
||||||
|
|
|
@ -500,8 +500,7 @@ class DevNullTests (unittest.TestCase):
|
||||||
class URandomTests (unittest.TestCase):
|
class URandomTests (unittest.TestCase):
|
||||||
def test_urandom(self):
|
def test_urandom(self):
|
||||||
try:
|
try:
|
||||||
with test_support._check_py3k_warnings(
|
with test_support.check_warnings():
|
||||||
('integer argument expected, got float', DeprecationWarning)):
|
|
||||||
self.assertEqual(len(os.urandom(1)), 1)
|
self.assertEqual(len(os.urandom(1)), 1)
|
||||||
self.assertEqual(len(os.urandom(10)), 10)
|
self.assertEqual(len(os.urandom(10)), 10)
|
||||||
self.assertEqual(len(os.urandom(100)), 100)
|
self.assertEqual(len(os.urandom(100)), 100)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue