[Python-checkins] r50957 - python/trunk/Lib/test/test_uuid.py
neal.norwitz
python-checkins at python.org
Sat Jul 29 22:37:08 CEST 2006
Author: neal.norwitz
Date: Sat Jul 29 22:37:08 2006
New Revision: 50957
Modified:
python/trunk/Lib/test/test_uuid.py
Log:
Disable test_getnode too, since this is also unreliable.
Modified: python/trunk/Lib/test/test_uuid.py
==============================================================================
--- python/trunk/Lib/test/test_uuid.py (original)
+++ python/trunk/Lib/test/test_uuid.py Sat Jul 29 22:37:08 2006
@@ -338,6 +338,12 @@
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")
More information about the Python-checkins
mailing list