[Python-checkins] cpython (3.3): Issue #19804: The test_find_mac test in test_uuid is now skipped if the

serhiy.storchaka python-checkins at python.org
Fri Jan 10 14:11:40 CET 2014


http://hg.python.org/cpython/rev/201077b57fe0
changeset:   88392:201077b57fe0
branch:      3.3
parent:      88388:2ca26065fb00
user:        Serhiy Storchaka <storchaka at gmail.com>
date:        Fri Jan 10 15:06:59 2014 +0200
summary:
  Issue #19804: The test_find_mac test in test_uuid is now skipped if the
ifconfig executable is not available.

files:
  Lib/test/test_uuid.py |  6 ++++++
  Misc/NEWS             |  3 +++
  2 files changed, 9 insertions(+), 0 deletions(-)


diff --git a/Lib/test/test_uuid.py b/Lib/test/test_uuid.py
--- a/Lib/test/test_uuid.py
+++ b/Lib/test/test_uuid.py
@@ -3,6 +3,7 @@
 import builtins
 import io
 import os
+import shutil
 import uuid
 
 def importable(name):
@@ -369,6 +370,11 @@
         def mock_popen(cmd):
             return io.StringIO(data)
 
+        if shutil.which('ifconfig') is None:
+            path = os.pathsep.join(('/sbin', '/usr/sbin'))
+            if shutil.which('ifconfig', path=path) is None:
+                self.skipTest('requires ifconfig')
+
         with support.swap_attr(os, 'popen', mock_popen):
             mac = uuid._find_mac(
                 command='ifconfig',
diff --git a/Misc/NEWS b/Misc/NEWS
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -234,6 +234,9 @@
 Tests
 -----
 
+- Issue #19804: The test_find_mac test in test_uuid is now skipped if the
+  ifconfig executable is not available.
+
 - Issue #19886: Use better estimated memory requirements for bigmem tests.
 
 - Issue #20055: Fix test_shutil under Windows with symlink privileges held.

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list