Skip to content

Commit f669b78

Browse files
vstinnerGlyphack
authored andcommitted
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.
1 parent b1f14ea commit f669b78

File tree

5 files changed

+59
-56
lines changed

5 files changed

+59
-56
lines changed

Lib/test/libregrtest/utils.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -355,7 +355,7 @@ def get_temp_dir(tmp_dir: StrPath | None = None) -> StrPath:
355355
if not support.is_wasi:
356356
tmp_dir = sysconfig.get_config_var('abs_builddir')
357357
if tmp_dir is None:
358-
# bpo-30284: On Windows, only srcdir is available. Using
358+
# gh-74470: On Windows, only srcdir is available. Using
359359
# abs_builddir mostly matters on UNIX when building Python
360360
# out of the source tree, especially when the source tree
361361
# is read only.

Lib/test/support/__init__.py

+27
Original file line numberDiff line numberDiff line change
@@ -2565,3 +2565,30 @@ def wrapper(*args, **kwargs):
25652565
finally:
25662566
_testinternalcapi.set_optimizer(save_opt)
25672567
return wrapper
2568+
2569+
2570+
_BASE_COPY_SRC_DIR_IGNORED_NAMES = frozenset({
2571+
# SRC_DIR/.git
2572+
'.git',
2573+
# ignore all __pycache__/ sub-directories
2574+
'__pycache__',
2575+
})
2576+
2577+
# Ignore function for shutil.copytree() to copy the Python source code.
2578+
def copy_python_src_ignore(path, names):
2579+
ignored = _BASE_COPY_SRC_DIR_IGNORED_NAMES
2580+
if os.path.basename(path) == 'Doc':
2581+
ignored |= {
2582+
# SRC_DIR/Doc/build/
2583+
'build',
2584+
# SRC_DIR/Doc/venv/
2585+
'venv',
2586+
}
2587+
2588+
# check if we are at the root of the source code
2589+
elif 'Modules' in names:
2590+
ignored |= {
2591+
# SRC_DIR/build/
2592+
'build',
2593+
}
2594+
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 unittest
@@ -800,6 +801,27 @@ def test_set_memlimit(self):
800801
support.max_memuse = old_max_memuse
801802
support.real_max_memuse = old_real_max_memuse
802803

804+
def test_copy_python_src_ignore(self):
805+
src_dir = sysconfig.get_config_var('srcdir')
806+
src_dir = os.path.abspath(src_dir)
807+
808+
ignored = {'.git', '__pycache__'}
809+
810+
# Source code directory
811+
names = os.listdir(src_dir)
812+
self.assertEqual(support.copy_python_src_ignore(src_dir, names),
813+
ignored | {'build'})
814+
815+
# Doc/ directory
816+
path = os.path.join(src_dir, 'Doc')
817+
self.assertEqual(support.copy_python_src_ignore(path, os.listdir(path)),
818+
ignored | {'build', 'venv'})
819+
820+
# An other directory
821+
path = os.path.join(src_dir, 'Objects')
822+
self.assertEqual(support.copy_python_src_ignore(path, os.listdir(path)),
823+
ignored)
824+
803825
# XXX -follows a list of untested API
804826
# make_legacy_pyc
805827
# 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
@@ -560,12 +560,6 @@ def test_zippath_from_non_installed_posix(self):
560560
stdlib_zip)
561561
additional_pythonpath_for_non_installed = []
562562

563-
# gh-109748: Don't copy __pycache__/ sub-directories, because they can
564-
# be modified by other Python tests running in parallel.
565-
ignored_names = {'__pycache__'}
566-
def ignore_pycache(src, names):
567-
return ignored_names
568-
569563
# Copy stdlib files to the non-installed python so venv can
570564
# correctly calculate the prefix.
571565
for eachpath in sys.path:
@@ -583,7 +577,7 @@ def ignore_pycache(src, names):
583577
shutil.copy(fn, libdir)
584578
elif os.path.isdir(fn):
585579
shutil.copytree(fn, os.path.join(libdir, name),
586-
ignore=ignore_pycache)
580+
ignore=copy_python_src_ignore)
587581
else:
588582
additional_pythonpath_for_non_installed.append(
589583
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)