summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2006-07-29 20:37:08 (GMT)
committerNeal Norwitz <nnorwitz@gmail.com>2006-07-29 20:37:08 (GMT)
commitb5a701b23f7e271709ba8fe0f4de42843dd06a5b (patch)
tree7a5c9fa2ac824687ef7c85f72fea00cae692b5d8 /Lib
parenta650fb3d6f54085dc35638306d229940d11d6589 (diff)
downloadcpython-b5a701b23f7e271709ba8fe0f4de42843dd06a5b.zip
cpython-b5a701b23f7e271709ba8fe0f4de42843dd06a5b.tar.gz
cpython-b5a701b23f7e271709ba8fe0f4de42843dd06a5b.tar.bz2
Disable test_getnode too, since this is also unreliable.
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_uuid.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/Lib/test/test_uuid.py b/Lib/test/test_uuid.py
index 305a707..5b6bf60 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")