Skip to content

Commit 44eab0e

Browse files
committed
pythongh-109615: Fix test_tools.test_freeze SRCDIR (python#109935)
Fix copy_source_tree() function of test_tools.test_freeze: * Don't copy SRC_DIR/build/ anymore. This directory is modified by other tests running in parallel. * Add test.support.copy_python_src_ignore(). * Use sysconfig to get the source directory. * Use sysconfig.get_config_var() to get CONFIG_ARGS variable. (cherry picked from commit 1512d6c)
1 parent 0a69de7 commit 44eab0e

File tree

4 files changed

+57
-55
lines changed

4 files changed

+57
-55
lines changed

Lib/test/support/__init__.py

+26
Original file line numberDiff line numberDiff line change
@@ -2324,3 +2324,29 @@ def adjust_int_max_str_digits(max_digits):
23242324
yield
23252325
finally:
23262326
sys.set_int_max_str_digits(current)
2327+
2328+
_BASE_COPY_SRC_DIR_IGNORED_NAMES = frozenset({
2329+
# SRC_DIR/.git
2330+
'.git',
2331+
# ignore all __pycache__/ sub-directories
2332+
'__pycache__',
2333+
})
2334+
2335+
# Ignore function for shutil.copytree() to copy the Python source code.
2336+
def copy_python_src_ignore(path, names):
2337+
ignored = _BASE_COPY_SRC_DIR_IGNORED_NAMES
2338+
if os.path.basename(path) == 'Doc':
2339+
ignored |= {
2340+
# SRC_DIR/Doc/build/
2341+
'build',
2342+
# SRC_DIR/Doc/venv/
2343+
'venv',
2344+
}
2345+
2346+
# check if we are at the root of the source code
2347+
elif 'Modules' in names:
2348+
ignored |= {
2349+
# SRC_DIR/build/
2350+
'build',
2351+
}
2352+
return ignored

Lib/test/test_support.py

+22
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
import stat
88
import subprocess
99
import sys
10+
import sysconfig
1011
import tempfile
1112
import textwrap
1213
import time
@@ -777,6 +778,27 @@ def recursive_function(depth):
777778

778779
#self.assertEqual(available, 2)
779780

781+
def test_copy_python_src_ignore(self):
782+
src_dir = sysconfig.get_config_var('srcdir')
783+
src_dir = os.path.abspath(src_dir)
784+
785+
ignored = {'.git', '__pycache__'}
786+
787+
# Source code directory
788+
names = os.listdir(src_dir)
789+
self.assertEqual(support.copy_python_src_ignore(src_dir, names),
790+
ignored | {'build'})
791+
792+
# Doc/ directory
793+
path = os.path.join(src_dir, 'Doc')
794+
self.assertEqual(support.copy_python_src_ignore(path, os.listdir(path)),
795+
ignored | {'build', 'venv'})
796+
797+
# An other directory
798+
path = os.path.join(src_dir, 'Objects')
799+
self.assertEqual(support.copy_python_src_ignore(path, os.listdir(path)),
800+
ignored)
801+
780802
# XXX -follows a list of untested API
781803
# make_legacy_pyc
782804
# is_resource_enabled

Lib/test/test_venv.py

+2-8
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
skip_if_broken_multiprocessing_synchronize, verbose,
2222
requires_subprocess, is_emscripten, is_wasi,
2323
requires_venv_with_pip, TEST_HOME_DIR,
24-
requires_resource)
24+
requires_resource, copy_python_src_ignore)
2525
from test.support.os_helper import (can_symlink, EnvironmentVarGuard, rmtree)
2626
import unittest
2727
import venv
@@ -563,12 +563,6 @@ def test_zippath_from_non_installed_posix(self):
563563
stdlib_zip)
564564
additional_pythonpath_for_non_installed = []
565565

566-
# gh-109748: Don't copy __pycache__/ sub-directories, because they can
567-
# be modified by other Python tests running in parallel.
568-
ignored_names = {'__pycache__'}
569-
def ignore_pycache(src, names):
570-
return ignored_names
571-
572566
# Copy stdlib files to the non-installed python so venv can
573567
# correctly calculate the prefix.
574568
for eachpath in sys.path:
@@ -586,7 +580,7 @@ def ignore_pycache(src, names):
586580
shutil.copy(fn, libdir)
587581
elif os.path.isdir(fn):
588582
shutil.copytree(fn, os.path.join(libdir, name),
589-
ignore=ignore_pycache)
583+
ignore=copy_python_src_ignore)
590584
else:
591585
additional_pythonpath_for_non_installed.append(
592586
eachpath)

Tools/freeze/test/freeze.py

+7-47
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
import os
22
import os.path
3-
import re
43
import shlex
54
import shutil
65
import subprocess
6+
import sysconfig
7+
from test import support
78

89

910
TESTS_DIR = os.path.dirname(__file__)
1011
TOOL_ROOT = os.path.dirname(TESTS_DIR)
11-
SRCDIR = os.path.dirname(os.path.dirname(TOOL_ROOT))
12+
SRCDIR = os.path.abspath(sysconfig.get_config_var('srcdir'))
1213

1314
MAKE = shutil.which('make')
1415
FREEZE = os.path.join(TOOL_ROOT, 'freeze.py')
@@ -75,56 +76,17 @@ def ensure_opt(args, name, value):
7576

7677

7778
def copy_source_tree(newroot, oldroot):
78-
print(f'copying the source tree into {newroot}...')
79+
print(f'copying the source tree from {oldroot} to {newroot}...')
7980
if os.path.exists(newroot):
8081
if newroot == SRCDIR:
8182
raise Exception('this probably isn\'t what you wanted')
8283
shutil.rmtree(newroot)
8384

84-
def ignore_non_src(src, names):
85-
"""Turns what could be a 1000M copy into a 100M copy."""
86-
# Don't copy the ~600M+ of needless git repo metadata.
87-
# source only, ignore cached .pyc files.
88-
subdirs_to_skip = {'.git', '__pycache__'}
89-
if os.path.basename(src) == 'Doc':
90-
# Another potential ~250M+ of non test related data.
91-
subdirs_to_skip.add('build')
92-
subdirs_to_skip.add('venv')
93-
return subdirs_to_skip
94-
95-
shutil.copytree(oldroot, newroot, ignore=ignore_non_src)
85+
shutil.copytree(oldroot, newroot, ignore=support.copy_python_src_ignore)
9686
if os.path.exists(os.path.join(newroot, 'Makefile')):
9787
_run_quiet([MAKE, 'clean'], newroot)
9888

9989

100-
def get_makefile_var(builddir, name):
101-
regex = re.compile(rf'^{name} *=\s*(.*?)\s*$')
102-
filename = os.path.join(builddir, 'Makefile')
103-
try:
104-
infile = open(filename, encoding='utf-8')
105-
except FileNotFoundError:
106-
return None
107-
with infile:
108-
for line in infile:
109-
m = regex.match(line)
110-
if m:
111-
value, = m.groups()
112-
return value or ''
113-
return None
114-
115-
116-
def get_config_var(builddir, name):
117-
python = os.path.join(builddir, 'python')
118-
if os.path.isfile(python):
119-
cmd = [python, '-c',
120-
f'import sysconfig; print(sysconfig.get_config_var("{name}"))']
121-
try:
122-
return _run_stdout(cmd)
123-
except subprocess.CalledProcessError:
124-
pass
125-
return get_makefile_var(builddir, name)
126-
127-
12890
##################################
12991
# freezing
13092

@@ -151,10 +113,8 @@ def prepare(script=None, outdir=None):
151113

152114
# Run configure.
153115
print(f'configuring python in {builddir}...')
154-
cmd = [
155-
os.path.join(srcdir, 'configure'),
156-
*shlex.split(get_config_var(srcdir, 'CONFIG_ARGS') or ''),
157-
]
116+
config_args = shlex.split(sysconfig.get_config_var('CONFIG_ARGS') or '')
117+
cmd = [os.path.join(srcdir, 'configure'), *config_args]
158118
ensure_opt(cmd, 'cache-file', os.path.join(outdir, 'python-config.cache'))
159119
prefix = os.path.join(outdir, 'python-installation')
160120
ensure_opt(cmd, 'prefix', prefix)

0 commit comments

Comments
 (0)