From: Neal Norwitz Date: Sat, 29 Jul 2006 20:37:08 +0000 (+0000) Subject: Disable test_getnode too, since this is also unreliable. X-Git-Tag: v2.5b3~66 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b5a701b23f7e271709ba8fe0f4de42843dd06a5b;p=python Disable test_getnode too, since this is also unreliable. --- diff --git a/Lib/test/test_uuid.py b/Lib/test/test_uuid.py index 305a707b86..5b6bf60e9e 100644 --- a/Lib/test/test_uuid.py +++ b/Lib/test/test_uuid.py @@ -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")