mirror of
https://github.com/python/cpython.git
synced 2025-07-23 19:25:40 +00:00
Merged revisions 71569 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r71569 | tarek.ziade | 2009-04-13 14:42:26 +0200 (Mon, 13 Apr 2009) | 1 line deactivate test_search_cpp under win32 ........
This commit is contained in:
parent
9c3786e9db
commit
f1f003ca0a
1 changed files with 3 additions and 0 deletions
|
@ -1,6 +1,7 @@
|
||||||
"""Tests for distutils.command.config."""
|
"""Tests for distutils.command.config."""
|
||||||
import unittest
|
import unittest
|
||||||
import os
|
import os
|
||||||
|
import sys
|
||||||
|
|
||||||
from distutils.command.config import dump_file, config
|
from distutils.command.config import dump_file, config
|
||||||
from distutils.tests import support
|
from distutils.tests import support
|
||||||
|
@ -36,6 +37,8 @@ class ConfigTestCase(support.LoggingSilencer,
|
||||||
self.assertEquals(len(self._logs), numlines+1)
|
self.assertEquals(len(self._logs), numlines+1)
|
||||||
|
|
||||||
def test_search_cpp(self):
|
def test_search_cpp(self):
|
||||||
|
if sys.platform == 'win32':
|
||||||
|
return
|
||||||
pkg_dir, dist = self.create_dist()
|
pkg_dir, dist = self.create_dist()
|
||||||
cmd = config(dist)
|
cmd = config(dist)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue