Disable test_getnode too, since this is also unreliable.

This commit is contained in:
Neal Norwitz 2006-07-29 20:37:08 +00:00
parent a650fb3d6f
commit b5a701b23f
1 changed files with 6 additions and 0 deletions

View File

@ -338,6 +338,12 @@ class TestUUID(TestCase):
self.check_node(uuid._windll_getnode(), 'windll')
def test_getnode(self):
import sys
print >>sys.__stdout__, \
""" WARNING: uuid.getnode is unreliable on many platforms.
It is disabled until the code and/or test can be fixed properly."""
return
node1 = uuid.getnode()
self.check_node(node1, "getnode1")