summaryrefslogtreecommitdiffstats
path: root/Lib/distutils
diff options
context:
space:
mode:
authorTarek Ziadé <ziade.tarek@gmail.com>2009-01-29 23:54:06 (GMT)
committerTarek Ziadé <ziade.tarek@gmail.com>2009-01-29 23:54:06 (GMT)
commitb18b936e797379b13a15604a76bbb9e1e0bcf5fe (patch)
treefb82428c23321d0e0491c9724ad2f22c5a320bff /Lib/distutils
parent7fc0dd7b5bb1c43497de4ccb8e6f922e3c3f8ca6 (diff)
downloadcpython-b18b936e797379b13a15604a76bbb9e1e0bcf5fe.zip
cpython-b18b936e797379b13a15604a76bbb9e1e0bcf5fe.tar.gz
cpython-b18b936e797379b13a15604a76bbb9e1e0bcf5fe.tar.bz2
Merged revisions 69106 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r69106 | tarek.ziade | 2009-01-30 00:49:17 +0100 (Fri, 30 Jan 2009) | 1 line fixed test_make_distribution so it runs on any platform, as long as tar an gzip are available ........
Diffstat (limited to 'Lib/distutils')
-rw-r--r--Lib/distutils/tests/test_sdist.py15
1 files changed, 6 insertions, 9 deletions
diff --git a/Lib/distutils/tests/test_sdist.py b/Lib/distutils/tests/test_sdist.py
index 96ec381..0d839b5 100644
--- a/Lib/distutils/tests/test_sdist.py
+++ b/Lib/distutils/tests/test_sdist.py
@@ -10,7 +10,7 @@ from distutils.command.sdist import sdist
from distutils.core import Distribution
from distutils.tests.test_config import PyPIRCCommandTestCase
from distutils.errors import DistutilsExecError
-from distutils.spawn import spawn
+from distutils.spawn import find_executable
CURDIR = os.path.dirname(__file__)
TEMP_PKG = join(CURDIR, 'temppkg')
@@ -111,15 +111,12 @@ class sdistTestCase(PyPIRCCommandTestCase):
def test_make_distribution(self):
- self._init_tmp_pkg()
+ # check if tar and gzip are installed
+ if (find_executable('tar') is None or
+ find_executable('gzip') is None):
+ return
- # check if tar is installed under win32
- if sys.platform == 'win32':
- try:
- spawn('tar --help')
- except DistutilsExecError:
- # let's return, no need to go further
- return
+ self._init_tmp_pkg()
# now building a sdist
dist = Distribution()